Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1 | from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
| 2 | |
| 3 | |
| 4 | import pybindgen.settings |
| 5 | import warnings |
| 6 | |
| 7 | class 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 |
| 11 | pybindgen.settings.error_handler = ErrorHandler() |
| 12 | |
| 13 | |
| 14 | import sys |
| 15 | |
| 16 | def module_init(): |
| 17 | root_module = Module('ns.NDNabstraction', cpp_namespace='::ns3') |
| 18 | return root_module |
| 19 | |
| 20 | def register_types(module): |
| 21 | root_module = module.get_root() |
| 22 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 23 | ## address.h (module 'network'): ns3::Address [class] |
| 24 | module.add_class('Address', import_from_module='ns.network') |
| 25 | ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration] |
| 26 | module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network') |
| 27 | ## application-container.h (module 'network'): ns3::ApplicationContainer [class] |
| 28 | module.add_class('ApplicationContainer', import_from_module='ns.network') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 29 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class] |
| 30 | module.add_class('AttributeConstructionList', import_from_module='ns.core') |
| 31 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct] |
| 32 | module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList']) |
| 33 | ## buffer.h (module 'network'): ns3::Buffer [class] |
| 34 | module.add_class('Buffer', import_from_module='ns.network') |
| 35 | ## buffer.h (module 'network'): ns3::Buffer::Iterator [class] |
| 36 | module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer']) |
| 37 | ## packet.h (module 'network'): ns3::ByteTagIterator [class] |
| 38 | module.add_class('ByteTagIterator', import_from_module='ns.network') |
| 39 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class] |
| 40 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator']) |
| 41 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class] |
| 42 | module.add_class('ByteTagList', import_from_module='ns.network') |
| 43 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class] |
| 44 | module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList']) |
| 45 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct] |
| 46 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator']) |
| 47 | ## callback.h (module 'core'): ns3::CallbackBase [class] |
| 48 | module.add_class('CallbackBase', import_from_module='ns.core') |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 49 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper [class] |
| 50 | module.add_class('CcnxAppHelper') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 51 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException [class] |
| 52 | module.add_class('CcnxContentObjectHeaderException') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 53 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer [struct] |
| 54 | module.add_class('CcnxFibEntryContainer') |
| 55 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric [class] |
| 56 | module.add_class('CcnxFibFaceMetric') |
| 57 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::Status [enumeration] |
| 58 | module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::CcnxFibFaceMetric']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 59 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer [struct] |
| 60 | module.add_class('CcnxFibFaceMetricContainer') |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 61 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper [class] |
| 62 | module.add_class('CcnxHeaderHelper') |
| 63 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::Type [enumeration] |
| 64 | module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::CcnxHeaderHelper']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 65 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException [class] |
| 66 | module.add_class('CcnxInterestHeaderException') |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 67 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper [class] |
| 68 | module.add_class('CcnxStackHelper') |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 69 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper [class] |
| 70 | module.add_class('CcnxTraceHelper') |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 71 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException [class] |
| 72 | module.add_class('CcnxUnknownHeaderException') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 73 | ## event-id.h (module 'core'): ns3::EventId [class] |
| 74 | module.add_class('EventId', import_from_module='ns.core') |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 75 | ## int-to-type.h (module 'core'): ns3::IntToType<0> [struct] |
| 76 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['0']) |
| 77 | ## int-to-type.h (module 'core'): ns3::IntToType<0>::v_e [enumeration] |
| 78 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 0 >'], import_from_module='ns.core') |
| 79 | ## int-to-type.h (module 'core'): ns3::IntToType<1> [struct] |
| 80 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['1']) |
| 81 | ## int-to-type.h (module 'core'): ns3::IntToType<1>::v_e [enumeration] |
| 82 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 1 >'], import_from_module='ns.core') |
| 83 | ## int-to-type.h (module 'core'): ns3::IntToType<2> [struct] |
| 84 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['2']) |
| 85 | ## int-to-type.h (module 'core'): ns3::IntToType<2>::v_e [enumeration] |
| 86 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 2 >'], import_from_module='ns.core') |
| 87 | ## int-to-type.h (module 'core'): ns3::IntToType<3> [struct] |
| 88 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['3']) |
| 89 | ## int-to-type.h (module 'core'): ns3::IntToType<3>::v_e [enumeration] |
| 90 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 3 >'], import_from_module='ns.core') |
| 91 | ## int-to-type.h (module 'core'): ns3::IntToType<4> [struct] |
| 92 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['4']) |
| 93 | ## int-to-type.h (module 'core'): ns3::IntToType<4>::v_e [enumeration] |
| 94 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 4 >'], import_from_module='ns.core') |
| 95 | ## int-to-type.h (module 'core'): ns3::IntToType<5> [struct] |
| 96 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['5']) |
| 97 | ## int-to-type.h (module 'core'): ns3::IntToType<5>::v_e [enumeration] |
| 98 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 5 >'], import_from_module='ns.core') |
| 99 | ## int-to-type.h (module 'core'): ns3::IntToType<6> [struct] |
| 100 | module.add_class('IntToType', import_from_module='ns.core', template_parameters=['6']) |
| 101 | ## int-to-type.h (module 'core'): ns3::IntToType<6>::v_e [enumeration] |
| 102 | module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 6 >'], import_from_module='ns.core') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 103 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
| 104 | module.add_class('Ipv4Address', import_from_module='ns.network') |
| 105 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
| 106 | root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 107 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress [class] |
| 108 | module.add_class('Ipv4InterfaceAddress', import_from_module='ns.internet') |
| 109 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e [enumeration] |
| 110 | module.add_enum('InterfaceAddressScope_e', ['HOST', 'LINK', 'GLOBAL'], outer_class=root_module['ns3::Ipv4InterfaceAddress'], import_from_module='ns.internet') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 111 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class] |
| 112 | module.add_class('Ipv4Mask', import_from_module='ns.network') |
| 113 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
| 114 | module.add_class('Ipv6Address', import_from_module='ns.network') |
| 115 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
| 116 | root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 117 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress [class] |
| 118 | module.add_class('Ipv6InterfaceAddress', import_from_module='ns.internet') |
| 119 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e [enumeration] |
| 120 | module.add_enum('State_e', ['TENTATIVE', 'DEPRECATED', 'PREFERRED', 'PERMANENT', 'HOMEADDRESS', 'TENTATIVE_OPTIMISTIC', 'INVALID'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet') |
| 121 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e [enumeration] |
| 122 | module.add_enum('Scope_e', ['HOST', 'LINKLOCAL', 'GLOBAL'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 123 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class] |
| 124 | module.add_class('Ipv6Prefix', import_from_module='ns.network') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 125 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class] |
| 126 | module.add_class('NetDeviceContainer', import_from_module='ns.network') |
| 127 | ## node-container.h (module 'network'): ns3::NodeContainer [class] |
| 128 | module.add_class('NodeContainer', import_from_module='ns.network') |
| 129 | ## object-base.h (module 'core'): ns3::ObjectBase [class] |
| 130 | module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core') |
| 131 | ## object.h (module 'core'): ns3::ObjectDeleter [struct] |
| 132 | module.add_class('ObjectDeleter', import_from_module='ns.core') |
| 133 | ## object-factory.h (module 'core'): ns3::ObjectFactory [class] |
| 134 | module.add_class('ObjectFactory', import_from_module='ns.core') |
| 135 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class] |
| 136 | module.add_class('PacketMetadata', import_from_module='ns.network') |
| 137 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct] |
| 138 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata']) |
| 139 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration] |
| 140 | module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network') |
| 141 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class] |
| 142 | module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 143 | ## random-variable.h (module 'core'): ns3::RandomVariable [class] |
| 144 | module.add_class('RandomVariable', import_from_module='ns.core') |
| 145 | ## random-variable.h (module 'core'): ns3::SeedManager [class] |
| 146 | module.add_class('SeedManager', import_from_module='ns.core') |
| 147 | ## random-variable.h (module 'core'): ns3::SequentialVariable [class] |
| 148 | module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 149 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > [class] |
| 150 | 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')) |
| 151 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class] |
| 152 | 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 Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 153 | ## simulator.h (module 'core'): ns3::Simulator [class] |
| 154 | module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core') |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 155 | ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper [class] |
| 156 | module.add_class('SpringMobilityHelper') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 157 | ## tag-buffer.h (module 'network'): ns3::TagBuffer [class] |
| 158 | module.add_class('TagBuffer', import_from_module='ns.network') |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 159 | ## timer.h (module 'core'): ns3::Timer [class] |
| 160 | module.add_class('Timer', import_from_module='ns.core') |
| 161 | ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration] |
| 162 | module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core') |
| 163 | ## timer.h (module 'core'): ns3::Timer::State [enumeration] |
| 164 | module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core') |
| 165 | ## timer-impl.h (module 'core'): ns3::TimerImpl [class] |
| 166 | module.add_class('TimerImpl', allow_subclassing=True, import_from_module='ns.core') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 167 | ## random-variable.h (module 'core'): ns3::TriangularVariable [class] |
| 168 | module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 169 | ## type-id.h (module 'core'): ns3::TypeId [class] |
| 170 | module.add_class('TypeId', import_from_module='ns.core') |
| 171 | ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration] |
| 172 | module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core') |
| 173 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct] |
| 174 | module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
| 175 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct] |
| 176 | module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
| 177 | ## random-variable.h (module 'core'): ns3::UniformVariable [class] |
| 178 | module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 179 | ## vector.h (module 'core'): ns3::Vector2D [class] |
| 180 | module.add_class('Vector2D', import_from_module='ns.core') |
| 181 | ## vector.h (module 'core'): ns3::Vector3D [class] |
| 182 | module.add_class('Vector3D', import_from_module='ns.core') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 183 | ## random-variable.h (module 'core'): ns3::WeibullVariable [class] |
| 184 | module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 185 | ## random-variable.h (module 'core'): ns3::ZetaVariable [class] |
| 186 | module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 187 | ## random-variable.h (module 'core'): ns3::ZipfVariable [class] |
| 188 | module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 189 | ## empty.h (module 'core'): ns3::empty [class] |
| 190 | module.add_class('empty', import_from_module='ns.core') |
| 191 | ## int64x64-double.h (module 'core'): ns3::int64x64_t [class] |
| 192 | module.add_class('int64x64_t', import_from_module='ns.core') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 193 | ## chunk.h (module 'network'): ns3::Chunk [class] |
| 194 | module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >']) |
| 195 | ## random-variable.h (module 'core'): ns3::ConstantVariable [class] |
| 196 | module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 197 | ## random-variable.h (module 'core'): ns3::DeterministicVariable [class] |
| 198 | module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 199 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class] |
| 200 | module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 201 | ## random-variable.h (module 'core'): ns3::ErlangVariable [class] |
| 202 | module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 203 | ## random-variable.h (module 'core'): ns3::ExponentialVariable [class] |
| 204 | module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 205 | ## random-variable.h (module 'core'): ns3::GammaVariable [class] |
| 206 | module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 207 | ## header.h (module 'network'): ns3::Header [class] |
| 208 | module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk']) |
| 209 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class] |
| 210 | module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 211 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header [class] |
| 212 | module.add_class('Ipv4Header', import_from_module='ns.internet', parent=root_module['ns3::Header']) |
| 213 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType [enumeration] |
| 214 | module.add_enum('DscpType', ['DscpDefault', 'CS1', 'AF11', 'AF12', 'AF13', 'CS2', 'AF21', 'AF22', 'AF23', 'CS3', 'AF31', 'AF32', 'AF33', 'CS4', 'AF41', 'AF42', 'AF43', 'CS5', 'EF', 'CS6', 'CS7'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet') |
| 215 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType [enumeration] |
| 216 | module.add_enum('EcnType', ['NotECT', 'ECT1', 'ECT0', 'CE'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet') |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 217 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Header [class] |
| 218 | module.add_class('Ipv6Header', import_from_module='ns.internet', parent=root_module['ns3::Header']) |
| 219 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::NextHeader_e [enumeration] |
| 220 | module.add_enum('NextHeader_e', ['IPV6_EXT_HOP_BY_HOP', 'IPV6_IPV4', 'IPV6_TCP', 'IPV6_UDP', 'IPV6_IPV6', 'IPV6_EXT_ROUTING', 'IPV6_EXT_FRAGMENTATION', 'IPV6_EXT_CONFIDENTIALITY', 'IPV6_EXT_AUTHENTIFICATION', 'IPV6_ICMPV6', 'IPV6_EXT_END', 'IPV6_EXT_DESTINATION', 'IPV6_SCTP', 'IPV6_EXT_MOBILITY', 'IPV6_UDP_LITE'], outer_class=root_module['ns3::Ipv6Header'], import_from_module='ns.internet') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 221 | ## random-variable.h (module 'core'): ns3::LogNormalVariable [class] |
| 222 | module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 223 | ## random-variable.h (module 'core'): ns3::NormalVariable [class] |
| 224 | module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 225 | ## object.h (module 'core'): ns3::Object [class] |
| 226 | module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
| 227 | ## object.h (module 'core'): ns3::Object::AggregateIterator [class] |
| 228 | module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object']) |
| 229 | ## random-variable.h (module 'core'): ns3::ParetoVariable [class] |
| 230 | module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 231 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class] |
| 232 | 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')) |
| 233 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class] |
| 234 | 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')) |
| 235 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class] |
| 236 | 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')) |
| 237 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class] |
| 238 | 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 Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 239 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> > [class] |
| 240 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxAppTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxAppTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 241 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > [class] |
| 242 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxFaceContainer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxFaceContainer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
| 243 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> > [class] |
| 244 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxFibEntry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxFibEntry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 245 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> > [class] |
| 246 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxL3Tracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxL3Tracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 247 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > [class] |
| 248 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxNameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxNameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 249 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> > [class] |
| 250 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxPathWeightTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxPathWeightTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 251 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class] |
| 252 | 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 Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 253 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> > [class] |
| 254 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Ipv4AppTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4AppTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 255 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> > [class] |
| 256 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Ipv4L3Tracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4L3Tracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 257 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > [class] |
| 258 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4MulticastRoute', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4MulticastRoute>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
| 259 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > [class] |
| 260 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4Route', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4Route>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 261 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class] |
| 262 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 263 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class] |
| 264 | 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')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 265 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class] |
| 266 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Packet', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Packet>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 267 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class] |
| 268 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TopologyReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TopologyReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 269 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class] |
| 270 | 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 Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 271 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> > [class] |
| 272 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::WindowTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::WindowTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
| 273 | ## socket.h (module 'network'): ns3::Socket [class] |
| 274 | module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 275 | ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration] |
| 276 | 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') |
| 277 | ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration] |
| 278 | 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') |
| 279 | ## tag.h (module 'network'): ns3::Tag [class] |
| 280 | module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 281 | ## nstime.h (module 'core'): ns3::Time [class] |
| 282 | module.add_class('Time', import_from_module='ns.core') |
| 283 | ## nstime.h (module 'core'): ns3::Time::Unit [enumeration] |
| 284 | module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core') |
| 285 | ## nstime.h (module 'core'): ns3::Time [class] |
| 286 | root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t']) |
| 287 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class] |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 288 | module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 289 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class] |
| 290 | module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader']) |
| 291 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class] |
| 292 | module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
| 293 | ## trailer.h (module 'network'): ns3::Trailer [class] |
| 294 | module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 295 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag [class] |
| 296 | module.add_class('WeightsPathStretchTag', parent=root_module['ns3::Tag']) |
| 297 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair [struct] |
| 298 | module.add_class('NodeWeightPair', outer_class=root_module['ns3::WeightsPathStretchTag']) |
| 299 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer [class] |
| 300 | module.add_class('WindowTracer', parent=root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 301 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader [class] |
| 302 | module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader']) |
| 303 | ## application.h (module 'network'): ns3::Application [class] |
| 304 | module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 305 | ## attribute.h (module 'core'): ns3::AttributeAccessor [class] |
| 306 | module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
| 307 | ## attribute.h (module 'core'): ns3::AttributeChecker [class] |
| 308 | 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> >']) |
| 309 | ## attribute.h (module 'core'): ns3::AttributeValue [class] |
| 310 | module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 311 | ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker [class] |
| 312 | module.add_class('BatchesChecker', parent=root_module['ns3::AttributeChecker']) |
| 313 | ## batches.h (module 'NDNabstraction'): ns3::BatchesValue [class] |
| 314 | module.add_class('BatchesValue', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 315 | ## callback.h (module 'core'): ns3::CallbackChecker [class] |
| 316 | module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 317 | ## callback.h (module 'core'): ns3::CallbackImplBase [class] |
| 318 | module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
| 319 | ## callback.h (module 'core'): ns3::CallbackValue [class] |
| 320 | module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 321 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [class] |
| 322 | module.add_class('Ccnx', parent=root_module['ns3::Object']) |
Alexander Afanasyev | 8f5a9bb | 2011-12-18 19:49:02 -0800 | [diff] [blame] | 323 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::DropReason [enumeration] |
| 324 | module.add_enum('DropReason', ['DUPLICATED', 'SUPPRESSED', 'NO_FACES', 'NON_DUPLICATED', 'AFTER_SATISFIED', 'UNSOLICITED'], outer_class=root_module['ns3::Ccnx']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 325 | ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp [class] |
| 326 | module.add_class('CcnxApp', parent=root_module['ns3::Application']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 327 | ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer [class] |
| 328 | module.add_class('CcnxAppTracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 329 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer [class] |
| 330 | module.add_class('CcnxConsumerWindowTracer', parent=root_module['ns3::WindowTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 331 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader [class] |
| 332 | module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::Header']) |
| 333 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail [class] |
| 334 | module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Trailer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 335 | ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace [class] |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 336 | module.add_class('CcnxFace', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 337 | ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer [class] |
| 338 | module.add_class('CcnxFaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 339 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib [class] |
| 340 | module.add_class('CcnxFib', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 341 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry [class] |
| 342 | module.add_class('CcnxFibEntry', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 343 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces [class] |
| 344 | module.add_class('NoFaces', outer_class=root_module['ns3::CcnxFibEntry']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 345 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [class] |
| 346 | module.add_class('CcnxInterestHeader', parent=root_module['ns3::Header']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 347 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [enumeration] |
| 348 | module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::CcnxInterestHeader']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 349 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer [class] |
| 350 | module.add_class('CcnxL3Tracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 351 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents [class] |
| 352 | module.add_class('CcnxNameComponents', parent=root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >']) |
| 353 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker [class] |
| 354 | module.add_class('CcnxNameComponentsChecker', parent=root_module['ns3::AttributeChecker']) |
| 355 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue [class] |
| 356 | module.add_class('CcnxNameComponentsValue', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 357 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer [class] |
| 358 | module.add_class('CcnxPathWeightTracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 359 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class] |
| 360 | module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 361 | ## event-impl.h (module 'core'): ns3::EventImpl [class] |
| 362 | module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
| 363 | ## integer.h (module 'core'): ns3::IntegerValue [class] |
| 364 | module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 365 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol [class] |
| 366 | module.add_class('IpL4Protocol', import_from_module='ns.internet', parent=root_module['ns3::Object']) |
| 367 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus [enumeration] |
| 368 | module.add_enum('RxStatus', ['RX_OK', 'RX_CSUM_FAILED', 'RX_ENDPOINT_CLOSED', 'RX_ENDPOINT_UNREACH'], outer_class=root_module['ns3::IpL4Protocol'], import_from_module='ns.internet') |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 369 | ## ipv4.h (module 'internet'): ns3::Ipv4 [class] |
| 370 | module.add_class('Ipv4', import_from_module='ns.internet', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 371 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class] |
| 372 | module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 373 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class] |
| 374 | module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 375 | ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer [class] |
| 376 | module.add_class('Ipv4AppTracer', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 377 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol [class] |
| 378 | module.add_class('Ipv4L3Protocol', import_from_module='ns.internet', parent=root_module['ns3::Ipv4']) |
| 379 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::DropReason [enumeration] |
| 380 | module.add_enum('DropReason', ['DROP_TTL_EXPIRED', 'DROP_NO_ROUTE', 'DROP_BAD_CHECKSUM', 'DROP_INTERFACE_DOWN', 'DROP_ROUTE_ERROR', 'DROP_FRAGMENT_TIMEOUT'], outer_class=root_module['ns3::Ipv4L3Protocol'], import_from_module='ns.internet') |
| 381 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer [class] |
| 382 | module.add_class('Ipv4L3Tracer', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 383 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class] |
| 384 | module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 385 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class] |
| 386 | module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 387 | ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute [class] |
| 388 | module.add_class('Ipv4MulticastRoute', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >']) |
| 389 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Route [class] |
| 390 | module.add_class('Ipv4Route', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 391 | ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol [class] |
| 392 | module.add_class('Ipv4RoutingProtocol', import_from_module='ns.internet', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 393 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class] |
| 394 | module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 395 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class] |
| 396 | module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 397 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface [class] |
| 398 | module.add_class('Ipv6Interface', import_from_module='ns.internet', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 399 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class] |
| 400 | module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 401 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class] |
| 402 | module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 403 | ## mobility-model.h (module 'mobility'): ns3::MobilityModel [class] |
| 404 | module.add_class('MobilityModel', import_from_module='ns.mobility', parent=root_module['ns3::Object']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 405 | ## net-device.h (module 'network'): ns3::NetDevice [class] |
| 406 | module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 407 | ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration] |
| 408 | 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') |
| 409 | ## nix-vector.h (module 'network'): ns3::NixVector [class] |
| 410 | module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >']) |
| 411 | ## node.h (module 'network'): ns3::Node [class] |
| 412 | module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 413 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class] |
| 414 | module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 415 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class] |
| 416 | module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 417 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class] |
| 418 | module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 419 | ## packet.h (module 'network'): ns3::Packet [class] |
| 420 | module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 421 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class] |
| 422 | module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 423 | ## random-variable.h (module 'core'): ns3::RandomVariableValue [class] |
| 424 | module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 425 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader [class] |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 426 | module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader']) |
| 427 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader [enumeration] |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 428 | module.add_enum('', ['WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 429 | ## socket.h (module 'network'): ns3::SocketAddressTag [class] |
| 430 | module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
| 431 | ## socket.h (module 'network'): ns3::SocketIpTtlTag [class] |
| 432 | module.add_class('SocketIpTtlTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
| 433 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class] |
| 434 | module.add_class('SocketSetDontFragmentTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 435 | ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel [class] |
| 436 | module.add_class('SpringMobilityModel', parent=root_module['ns3::MobilityModel']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 437 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer [class] |
| 438 | module.add_class('TcpCongestionWindowTracer', parent=root_module['ns3::WindowTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 439 | ## nstime.h (module 'core'): ns3::TimeChecker [class] |
| 440 | module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 441 | ## nstime.h (module 'core'): ns3::TimeValue [class] |
| 442 | module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 443 | ## type-id.h (module 'core'): ns3::TypeIdChecker [class] |
| 444 | module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 445 | ## type-id.h (module 'core'): ns3::TypeIdValue [class] |
| 446 | module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 447 | ## vector.h (module 'core'): ns3::Vector2DChecker [class] |
| 448 | module.add_class('Vector2DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 449 | ## vector.h (module 'core'): ns3::Vector2DValue [class] |
| 450 | module.add_class('Vector2DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 451 | ## vector.h (module 'core'): ns3::Vector3DChecker [class] |
| 452 | module.add_class('Vector3DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 453 | ## vector.h (module 'core'): ns3::Vector3DValue [class] |
| 454 | module.add_class('Vector3DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 455 | ## address.h (module 'network'): ns3::AddressChecker [class] |
| 456 | module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 457 | ## address.h (module 'network'): ns3::AddressValue [class] |
| 458 | module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 459 | module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map') |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 460 | module.add_container('std::list< ns3::WeightsPathStretchTag::NodeWeightPair >', 'ns3::WeightsPathStretchTag::NodeWeightPair', container_type='list') |
| 461 | module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 462 | module.add_container('std::list< boost::reference_wrapper< std::string const > >', 'boost::reference_wrapper< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const >', container_type='list') |
| 463 | module.add_container('std::list< std::string >', 'std::string', container_type='list') |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 464 | module.add_container('std::map< unsigned int, unsigned int >', ('unsigned int', 'unsigned int'), container_type='map') |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 465 | typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker') |
| 466 | typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*') |
| 467 | typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&') |
| 468 | module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker') |
| 469 | typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector') |
| 470 | typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*') |
| 471 | typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&') |
| 472 | module.add_typedef(root_module['ns3::Vector3D'], 'Vector') |
| 473 | typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue') |
| 474 | typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*') |
| 475 | typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&') |
| 476 | module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 477 | |
| 478 | ## Register a nested module for the namespace FatalImpl |
| 479 | |
| 480 | nested_module = module.add_cpp_namespace('FatalImpl') |
| 481 | register_types_ns3_FatalImpl(nested_module) |
| 482 | |
| 483 | |
| 484 | ## Register a nested module for the namespace internal |
| 485 | |
| 486 | nested_module = module.add_cpp_namespace('internal') |
| 487 | register_types_ns3_internal(nested_module) |
| 488 | |
| 489 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 490 | def register_types_ns3_FatalImpl(module): |
| 491 | root_module = module.get_root() |
| 492 | |
| 493 | |
| 494 | def register_types_ns3_internal(module): |
| 495 | root_module = module.get_root() |
| 496 | |
| 497 | |
| 498 | def register_methods(root_module): |
| 499 | register_Ns3Address_methods(root_module, root_module['ns3::Address']) |
| 500 | register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 501 | register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList']) |
| 502 | register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item']) |
| 503 | register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer']) |
| 504 | register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator']) |
| 505 | register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator']) |
| 506 | register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item']) |
| 507 | register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList']) |
| 508 | register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator']) |
| 509 | register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item']) |
| 510 | register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 511 | register_Ns3CcnxAppHelper_methods(root_module, root_module['ns3::CcnxAppHelper']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 512 | register_Ns3CcnxContentObjectHeaderException_methods(root_module, root_module['ns3::CcnxContentObjectHeaderException']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 513 | register_Ns3CcnxFibEntryContainer_methods(root_module, root_module['ns3::CcnxFibEntryContainer']) |
| 514 | register_Ns3CcnxFibFaceMetric_methods(root_module, root_module['ns3::CcnxFibFaceMetric']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 515 | register_Ns3CcnxFibFaceMetricContainer_methods(root_module, root_module['ns3::CcnxFibFaceMetricContainer']) |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 516 | register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 517 | register_Ns3CcnxInterestHeaderException_methods(root_module, root_module['ns3::CcnxInterestHeaderException']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 518 | register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 519 | register_Ns3CcnxTraceHelper_methods(root_module, root_module['ns3::CcnxTraceHelper']) |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 520 | register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 521 | register_Ns3EventId_methods(root_module, root_module['ns3::EventId']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 522 | register_Ns3IntToType__0_methods(root_module, root_module['ns3::IntToType< 0 >']) |
| 523 | register_Ns3IntToType__1_methods(root_module, root_module['ns3::IntToType< 1 >']) |
| 524 | register_Ns3IntToType__2_methods(root_module, root_module['ns3::IntToType< 2 >']) |
| 525 | register_Ns3IntToType__3_methods(root_module, root_module['ns3::IntToType< 3 >']) |
| 526 | register_Ns3IntToType__4_methods(root_module, root_module['ns3::IntToType< 4 >']) |
| 527 | register_Ns3IntToType__5_methods(root_module, root_module['ns3::IntToType< 5 >']) |
| 528 | register_Ns3IntToType__6_methods(root_module, root_module['ns3::IntToType< 6 >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 529 | register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 530 | register_Ns3Ipv4InterfaceAddress_methods(root_module, root_module['ns3::Ipv4InterfaceAddress']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 531 | register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask']) |
| 532 | register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 533 | register_Ns3Ipv6InterfaceAddress_methods(root_module, root_module['ns3::Ipv6InterfaceAddress']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 534 | register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 535 | register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer']) |
| 536 | register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer']) |
| 537 | register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase']) |
| 538 | register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter']) |
| 539 | register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory']) |
| 540 | register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata']) |
| 541 | register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item']) |
| 542 | register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 543 | register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable']) |
| 544 | register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager']) |
| 545 | register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable']) |
| 546 | register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >']) |
| 547 | register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 548 | register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 549 | register_Ns3SpringMobilityHelper_methods(root_module, root_module['ns3::SpringMobilityHelper']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 550 | register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 551 | register_Ns3Timer_methods(root_module, root_module['ns3::Timer']) |
| 552 | register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 553 | register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable']) |
| 554 | register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId']) |
| 555 | register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation']) |
| 556 | register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation']) |
| 557 | register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 558 | register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D']) |
| 559 | register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 560 | register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable']) |
| 561 | register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable']) |
| 562 | register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable']) |
| 563 | register_Ns3Empty_methods(root_module, root_module['ns3::empty']) |
| 564 | register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 565 | register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk']) |
| 566 | register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable']) |
| 567 | register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable']) |
| 568 | register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable']) |
| 569 | register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable']) |
| 570 | register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable']) |
| 571 | register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable']) |
| 572 | register_Ns3Header_methods(root_module, root_module['ns3::Header']) |
| 573 | register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 574 | register_Ns3Ipv4Header_methods(root_module, root_module['ns3::Ipv4Header']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 575 | register_Ns3Ipv6Header_methods(root_module, root_module['ns3::Ipv6Header']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 576 | register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable']) |
| 577 | register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable']) |
| 578 | register_Ns3Object_methods(root_module, root_module['ns3::Object']) |
| 579 | register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator']) |
| 580 | register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 581 | register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
| 582 | register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
| 583 | register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
| 584 | register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 585 | register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 586 | register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >']) |
| 587 | register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 588 | register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 589 | register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 590 | register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 591 | register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 592 | register_Ns3SimpleRefCount__Ns3Ipv4AppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4AppTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 593 | register_Ns3SimpleRefCount__Ns3Ipv4L3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4L3Tracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 594 | register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >']) |
| 595 | register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 596 | register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 597 | register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 598 | register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >']) |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 599 | register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 600 | register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 601 | register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >']) |
| 602 | register_Ns3Socket_methods(root_module, root_module['ns3::Socket']) |
| 603 | register_Ns3Tag_methods(root_module, root_module['ns3::Tag']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 604 | register_Ns3Time_methods(root_module, root_module['ns3::Time']) |
| 605 | register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader']) |
| 606 | register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link']) |
| 607 | register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor']) |
| 608 | register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 609 | register_Ns3WeightsPathStretchTag_methods(root_module, root_module['ns3::WeightsPathStretchTag']) |
| 610 | register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, root_module['ns3::WeightsPathStretchTag::NodeWeightPair']) |
| 611 | register_Ns3WindowTracer_methods(root_module, root_module['ns3::WindowTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 612 | register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader']) |
| 613 | register_Ns3Application_methods(root_module, root_module['ns3::Application']) |
| 614 | register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor']) |
| 615 | register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker']) |
| 616 | register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 617 | register_Ns3BatchesChecker_methods(root_module, root_module['ns3::BatchesChecker']) |
| 618 | register_Ns3BatchesValue_methods(root_module, root_module['ns3::BatchesValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 619 | register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker']) |
| 620 | register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase']) |
| 621 | register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue']) |
| 622 | register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 623 | register_Ns3CcnxApp_methods(root_module, root_module['ns3::CcnxApp']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 624 | register_Ns3CcnxAppTracer_methods(root_module, root_module['ns3::CcnxAppTracer']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 625 | register_Ns3CcnxConsumerWindowTracer_methods(root_module, root_module['ns3::CcnxConsumerWindowTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 626 | register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader']) |
| 627 | register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 628 | register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace']) |
| 629 | register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 630 | register_Ns3CcnxFib_methods(root_module, root_module['ns3::CcnxFib']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 631 | register_Ns3CcnxFibEntry_methods(root_module, root_module['ns3::CcnxFibEntry']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 632 | register_Ns3CcnxFibEntryNoFaces_methods(root_module, root_module['ns3::CcnxFibEntry::NoFaces']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 633 | register_Ns3CcnxInterestHeader_methods(root_module, root_module['ns3::CcnxInterestHeader']) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 634 | register_Ns3CcnxL3Tracer_methods(root_module, root_module['ns3::CcnxL3Tracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 635 | register_Ns3CcnxNameComponents_methods(root_module, root_module['ns3::CcnxNameComponents']) |
| 636 | register_Ns3CcnxNameComponentsChecker_methods(root_module, root_module['ns3::CcnxNameComponentsChecker']) |
| 637 | register_Ns3CcnxNameComponentsValue_methods(root_module, root_module['ns3::CcnxNameComponentsValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 638 | register_Ns3CcnxPathWeightTracer_methods(root_module, root_module['ns3::CcnxPathWeightTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 639 | register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue']) |
| 640 | register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl']) |
| 641 | register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 642 | register_Ns3IpL4Protocol_methods(root_module, root_module['ns3::IpL4Protocol']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 643 | register_Ns3Ipv4_methods(root_module, root_module['ns3::Ipv4']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 644 | register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker']) |
| 645 | register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 646 | register_Ns3Ipv4AppTracer_methods(root_module, root_module['ns3::Ipv4AppTracer']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 647 | register_Ns3Ipv4L3Protocol_methods(root_module, root_module['ns3::Ipv4L3Protocol']) |
| 648 | register_Ns3Ipv4L3Tracer_methods(root_module, root_module['ns3::Ipv4L3Tracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 649 | register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker']) |
| 650 | register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 651 | register_Ns3Ipv4MulticastRoute_methods(root_module, root_module['ns3::Ipv4MulticastRoute']) |
| 652 | register_Ns3Ipv4Route_methods(root_module, root_module['ns3::Ipv4Route']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 653 | register_Ns3Ipv4RoutingProtocol_methods(root_module, root_module['ns3::Ipv4RoutingProtocol']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 654 | register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker']) |
| 655 | register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue']) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 656 | register_Ns3Ipv6Interface_methods(root_module, root_module['ns3::Ipv6Interface']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 657 | register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker']) |
| 658 | register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 659 | register_Ns3MobilityModel_methods(root_module, root_module['ns3::MobilityModel']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 660 | register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice']) |
| 661 | register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector']) |
| 662 | register_Ns3Node_methods(root_module, root_module['ns3::Node']) |
| 663 | register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker']) |
| 664 | register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue']) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 665 | register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 666 | register_Ns3Packet_methods(root_module, root_module['ns3::Packet']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 667 | register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker']) |
| 668 | register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue']) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 669 | register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 670 | register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag']) |
| 671 | register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag']) |
| 672 | register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 673 | register_Ns3SpringMobilityModel_methods(root_module, root_module['ns3::SpringMobilityModel']) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 674 | register_Ns3TcpCongestionWindowTracer_methods(root_module, root_module['ns3::TcpCongestionWindowTracer']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 675 | register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker']) |
| 676 | register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue']) |
| 677 | register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker']) |
| 678 | register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue']) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 679 | register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker']) |
| 680 | register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue']) |
| 681 | register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker']) |
| 682 | register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 683 | register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker']) |
| 684 | register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue']) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 685 | return |
| 686 | |
| 687 | def register_Ns3Address_methods(root_module, cls): |
| 688 | cls.add_binary_comparison_operator('!=') |
| 689 | cls.add_output_stream_operator() |
| 690 | cls.add_binary_comparison_operator('==') |
| 691 | cls.add_binary_comparison_operator('<') |
| 692 | ## address.h (module 'network'): ns3::Address::Address() [constructor] |
| 693 | cls.add_constructor([]) |
| 694 | ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor] |
| 695 | cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 696 | ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor] |
| 697 | cls.add_constructor([param('ns3::Address const &', 'address')]) |
| 698 | ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function] |
| 699 | cls.add_method('CheckCompatible', |
| 700 | 'bool', |
| 701 | [param('uint8_t', 'type'), param('uint8_t', 'len')], |
| 702 | is_const=True) |
| 703 | ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function] |
| 704 | cls.add_method('CopyAllFrom', |
| 705 | 'uint32_t', |
| 706 | [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 707 | ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function] |
| 708 | cls.add_method('CopyAllTo', |
| 709 | 'uint32_t', |
| 710 | [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], |
| 711 | is_const=True) |
| 712 | ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function] |
| 713 | cls.add_method('CopyFrom', |
| 714 | 'uint32_t', |
| 715 | [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 716 | ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function] |
| 717 | cls.add_method('CopyTo', |
| 718 | 'uint32_t', |
| 719 | [param('uint8_t *', 'buffer')], |
| 720 | is_const=True) |
| 721 | ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function] |
| 722 | cls.add_method('Deserialize', |
| 723 | 'void', |
| 724 | [param('ns3::TagBuffer', 'buffer')]) |
| 725 | ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function] |
| 726 | cls.add_method('GetLength', |
| 727 | 'uint8_t', |
| 728 | [], |
| 729 | is_const=True) |
| 730 | ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function] |
| 731 | cls.add_method('GetSerializedSize', |
| 732 | 'uint32_t', |
| 733 | [], |
| 734 | is_const=True) |
| 735 | ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function] |
| 736 | cls.add_method('IsInvalid', |
| 737 | 'bool', |
| 738 | [], |
| 739 | is_const=True) |
| 740 | ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function] |
| 741 | cls.add_method('IsMatchingType', |
| 742 | 'bool', |
| 743 | [param('uint8_t', 'type')], |
| 744 | is_const=True) |
| 745 | ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function] |
| 746 | cls.add_method('Register', |
| 747 | 'uint8_t', |
| 748 | [], |
| 749 | is_static=True) |
| 750 | ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function] |
| 751 | cls.add_method('Serialize', |
| 752 | 'void', |
| 753 | [param('ns3::TagBuffer', 'buffer')], |
| 754 | is_const=True) |
| 755 | return |
| 756 | |
| 757 | def register_Ns3ApplicationContainer_methods(root_module, cls): |
| 758 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor] |
| 759 | cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')]) |
| 760 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor] |
| 761 | cls.add_constructor([]) |
| 762 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor] |
| 763 | cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')]) |
| 764 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor] |
| 765 | cls.add_constructor([param('std::string', 'name')]) |
| 766 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function] |
| 767 | cls.add_method('Add', |
| 768 | 'void', |
| 769 | [param('ns3::ApplicationContainer', 'other')]) |
| 770 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function] |
| 771 | cls.add_method('Add', |
| 772 | 'void', |
| 773 | [param('ns3::Ptr< ns3::Application >', 'application')]) |
| 774 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function] |
| 775 | cls.add_method('Add', |
| 776 | 'void', |
| 777 | [param('std::string', 'name')]) |
| 778 | ## 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] |
| 779 | cls.add_method('Begin', |
| 780 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', |
| 781 | [], |
| 782 | is_const=True) |
| 783 | ## 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] |
| 784 | cls.add_method('End', |
| 785 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', |
| 786 | [], |
| 787 | is_const=True) |
| 788 | ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function] |
| 789 | cls.add_method('Get', |
| 790 | 'ns3::Ptr< ns3::Application >', |
| 791 | [param('uint32_t', 'i')], |
| 792 | is_const=True) |
| 793 | ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function] |
| 794 | cls.add_method('GetN', |
| 795 | 'uint32_t', |
| 796 | [], |
| 797 | is_const=True) |
| 798 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function] |
| 799 | cls.add_method('Start', |
| 800 | 'void', |
| 801 | [param('ns3::Time', 'start')]) |
| 802 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function] |
| 803 | cls.add_method('Stop', |
| 804 | 'void', |
| 805 | [param('ns3::Time', 'stop')]) |
| 806 | return |
| 807 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 808 | def register_Ns3AttributeConstructionList_methods(root_module, cls): |
| 809 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor] |
| 810 | cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')]) |
| 811 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor] |
| 812 | cls.add_constructor([]) |
| 813 | ## 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] |
| 814 | cls.add_method('Add', |
| 815 | 'void', |
| 816 | [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')]) |
| 817 | ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function] |
| 818 | cls.add_method('Begin', |
| 819 | 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
| 820 | [], |
| 821 | is_const=True) |
| 822 | ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function] |
| 823 | cls.add_method('End', |
| 824 | 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
| 825 | [], |
| 826 | is_const=True) |
| 827 | ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 828 | cls.add_method('Find', |
| 829 | 'ns3::Ptr< ns3::AttributeValue >', |
| 830 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 831 | is_const=True) |
| 832 | return |
| 833 | |
| 834 | def register_Ns3AttributeConstructionListItem_methods(root_module, cls): |
| 835 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor] |
| 836 | cls.add_constructor([]) |
| 837 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor] |
| 838 | cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')]) |
| 839 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable] |
| 840 | cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
| 841 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable] |
| 842 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
| 843 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable] |
| 844 | cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False) |
| 845 | return |
| 846 | |
| 847 | def register_Ns3Buffer_methods(root_module, cls): |
| 848 | ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor] |
| 849 | cls.add_constructor([]) |
| 850 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor] |
| 851 | cls.add_constructor([param('uint32_t', 'dataSize')]) |
| 852 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor] |
| 853 | cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')]) |
| 854 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor] |
| 855 | cls.add_constructor([param('ns3::Buffer const &', 'o')]) |
| 856 | ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function] |
| 857 | cls.add_method('AddAtEnd', |
| 858 | 'bool', |
| 859 | [param('uint32_t', 'end')]) |
| 860 | ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function] |
| 861 | cls.add_method('AddAtEnd', |
| 862 | 'void', |
| 863 | [param('ns3::Buffer const &', 'o')]) |
| 864 | ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function] |
| 865 | cls.add_method('AddAtStart', |
| 866 | 'bool', |
| 867 | [param('uint32_t', 'start')]) |
| 868 | ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function] |
| 869 | cls.add_method('Begin', |
| 870 | 'ns3::Buffer::Iterator', |
| 871 | [], |
| 872 | is_const=True) |
| 873 | ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function] |
| 874 | cls.add_method('CopyData', |
| 875 | 'void', |
| 876 | [param('std::ostream *', 'os'), param('uint32_t', 'size')], |
| 877 | is_const=True) |
| 878 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function] |
| 879 | cls.add_method('CopyData', |
| 880 | 'uint32_t', |
| 881 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], |
| 882 | is_const=True) |
| 883 | ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function] |
| 884 | cls.add_method('CreateFragment', |
| 885 | 'ns3::Buffer', |
| 886 | [param('uint32_t', 'start'), param('uint32_t', 'length')], |
| 887 | is_const=True) |
| 888 | ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function] |
| 889 | cls.add_method('CreateFullCopy', |
| 890 | 'ns3::Buffer', |
| 891 | [], |
| 892 | is_const=True) |
| 893 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function] |
| 894 | cls.add_method('Deserialize', |
| 895 | 'uint32_t', |
| 896 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 897 | ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function] |
| 898 | cls.add_method('End', |
| 899 | 'ns3::Buffer::Iterator', |
| 900 | [], |
| 901 | is_const=True) |
| 902 | ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function] |
| 903 | cls.add_method('GetCurrentEndOffset', |
| 904 | 'int32_t', |
| 905 | [], |
| 906 | is_const=True) |
| 907 | ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function] |
| 908 | cls.add_method('GetCurrentStartOffset', |
| 909 | 'int32_t', |
| 910 | [], |
| 911 | is_const=True) |
| 912 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function] |
| 913 | cls.add_method('GetSerializedSize', |
| 914 | 'uint32_t', |
| 915 | [], |
| 916 | is_const=True) |
| 917 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function] |
| 918 | cls.add_method('GetSize', |
| 919 | 'uint32_t', |
| 920 | [], |
| 921 | is_const=True) |
| 922 | ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function] |
| 923 | cls.add_method('PeekData', |
| 924 | 'uint8_t const *', |
| 925 | [], |
| 926 | is_const=True) |
| 927 | ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function] |
| 928 | cls.add_method('RemoveAtEnd', |
| 929 | 'void', |
| 930 | [param('uint32_t', 'end')]) |
| 931 | ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function] |
| 932 | cls.add_method('RemoveAtStart', |
| 933 | 'void', |
| 934 | [param('uint32_t', 'start')]) |
| 935 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 936 | cls.add_method('Serialize', |
| 937 | 'uint32_t', |
| 938 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 939 | is_const=True) |
| 940 | return |
| 941 | |
| 942 | def register_Ns3BufferIterator_methods(root_module, cls): |
| 943 | ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor] |
| 944 | cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')]) |
| 945 | ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor] |
| 946 | cls.add_constructor([]) |
| 947 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function] |
| 948 | cls.add_method('CalculateIpChecksum', |
| 949 | 'uint16_t', |
| 950 | [param('uint16_t', 'size')]) |
| 951 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function] |
| 952 | cls.add_method('CalculateIpChecksum', |
| 953 | 'uint16_t', |
| 954 | [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')]) |
| 955 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function] |
| 956 | cls.add_method('GetDistanceFrom', |
| 957 | 'uint32_t', |
| 958 | [param('ns3::Buffer::Iterator const &', 'o')], |
| 959 | is_const=True) |
| 960 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function] |
| 961 | cls.add_method('GetSize', |
| 962 | 'uint32_t', |
| 963 | [], |
| 964 | is_const=True) |
| 965 | ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function] |
| 966 | cls.add_method('IsEnd', |
| 967 | 'bool', |
| 968 | [], |
| 969 | is_const=True) |
| 970 | ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function] |
| 971 | cls.add_method('IsStart', |
| 972 | 'bool', |
| 973 | [], |
| 974 | is_const=True) |
| 975 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function] |
| 976 | cls.add_method('Next', |
| 977 | 'void', |
| 978 | []) |
| 979 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function] |
| 980 | cls.add_method('Next', |
| 981 | 'void', |
| 982 | [param('uint32_t', 'delta')]) |
| 983 | ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function] |
| 984 | cls.add_method('PeekU8', |
| 985 | 'uint8_t', |
| 986 | []) |
| 987 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function] |
| 988 | cls.add_method('Prev', |
| 989 | 'void', |
| 990 | []) |
| 991 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function] |
| 992 | cls.add_method('Prev', |
| 993 | 'void', |
| 994 | [param('uint32_t', 'delta')]) |
| 995 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function] |
| 996 | cls.add_method('Read', |
| 997 | 'void', |
| 998 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')]) |
| 999 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function] |
| 1000 | cls.add_method('Read', |
| 1001 | 'void', |
| 1002 | [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')]) |
| 1003 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function] |
| 1004 | cls.add_method('ReadLsbtohU16', |
| 1005 | 'uint16_t', |
| 1006 | []) |
| 1007 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function] |
| 1008 | cls.add_method('ReadLsbtohU32', |
| 1009 | 'uint32_t', |
| 1010 | []) |
| 1011 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function] |
| 1012 | cls.add_method('ReadLsbtohU64', |
| 1013 | 'uint64_t', |
| 1014 | []) |
| 1015 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function] |
| 1016 | cls.add_method('ReadNtohU16', |
| 1017 | 'uint16_t', |
| 1018 | []) |
| 1019 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function] |
| 1020 | cls.add_method('ReadNtohU32', |
| 1021 | 'uint32_t', |
| 1022 | []) |
| 1023 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function] |
| 1024 | cls.add_method('ReadNtohU64', |
| 1025 | 'uint64_t', |
| 1026 | []) |
| 1027 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function] |
| 1028 | cls.add_method('ReadU16', |
| 1029 | 'uint16_t', |
| 1030 | []) |
| 1031 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function] |
| 1032 | cls.add_method('ReadU32', |
| 1033 | 'uint32_t', |
| 1034 | []) |
| 1035 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function] |
| 1036 | cls.add_method('ReadU64', |
| 1037 | 'uint64_t', |
| 1038 | []) |
| 1039 | ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function] |
| 1040 | cls.add_method('ReadU8', |
| 1041 | 'uint8_t', |
| 1042 | []) |
| 1043 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function] |
| 1044 | cls.add_method('Write', |
| 1045 | 'void', |
| 1046 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 1047 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function] |
| 1048 | cls.add_method('Write', |
| 1049 | 'void', |
| 1050 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')]) |
| 1051 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function] |
| 1052 | cls.add_method('WriteHtolsbU16', |
| 1053 | 'void', |
| 1054 | [param('uint16_t', 'data')]) |
| 1055 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function] |
| 1056 | cls.add_method('WriteHtolsbU32', |
| 1057 | 'void', |
| 1058 | [param('uint32_t', 'data')]) |
| 1059 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function] |
| 1060 | cls.add_method('WriteHtolsbU64', |
| 1061 | 'void', |
| 1062 | [param('uint64_t', 'data')]) |
| 1063 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function] |
| 1064 | cls.add_method('WriteHtonU16', |
| 1065 | 'void', |
| 1066 | [param('uint16_t', 'data')]) |
| 1067 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function] |
| 1068 | cls.add_method('WriteHtonU32', |
| 1069 | 'void', |
| 1070 | [param('uint32_t', 'data')]) |
| 1071 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function] |
| 1072 | cls.add_method('WriteHtonU64', |
| 1073 | 'void', |
| 1074 | [param('uint64_t', 'data')]) |
| 1075 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function] |
| 1076 | cls.add_method('WriteU16', |
| 1077 | 'void', |
| 1078 | [param('uint16_t', 'data')]) |
| 1079 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function] |
| 1080 | cls.add_method('WriteU32', |
| 1081 | 'void', |
| 1082 | [param('uint32_t', 'data')]) |
| 1083 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function] |
| 1084 | cls.add_method('WriteU64', |
| 1085 | 'void', |
| 1086 | [param('uint64_t', 'data')]) |
| 1087 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function] |
| 1088 | cls.add_method('WriteU8', |
| 1089 | 'void', |
| 1090 | [param('uint8_t', 'data')]) |
| 1091 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function] |
| 1092 | cls.add_method('WriteU8', |
| 1093 | 'void', |
| 1094 | [param('uint8_t', 'data'), param('uint32_t', 'len')]) |
| 1095 | return |
| 1096 | |
| 1097 | def register_Ns3ByteTagIterator_methods(root_module, cls): |
| 1098 | ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor] |
| 1099 | cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')]) |
| 1100 | ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function] |
| 1101 | cls.add_method('HasNext', |
| 1102 | 'bool', |
| 1103 | [], |
| 1104 | is_const=True) |
| 1105 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function] |
| 1106 | cls.add_method('Next', |
| 1107 | 'ns3::ByteTagIterator::Item', |
| 1108 | []) |
| 1109 | return |
| 1110 | |
| 1111 | def register_Ns3ByteTagIteratorItem_methods(root_module, cls): |
| 1112 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor] |
| 1113 | cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')]) |
| 1114 | ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function] |
| 1115 | cls.add_method('GetEnd', |
| 1116 | 'uint32_t', |
| 1117 | [], |
| 1118 | is_const=True) |
| 1119 | ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function] |
| 1120 | cls.add_method('GetStart', |
| 1121 | 'uint32_t', |
| 1122 | [], |
| 1123 | is_const=True) |
| 1124 | ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function] |
| 1125 | cls.add_method('GetTag', |
| 1126 | 'void', |
| 1127 | [param('ns3::Tag &', 'tag')], |
| 1128 | is_const=True) |
| 1129 | ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function] |
| 1130 | cls.add_method('GetTypeId', |
| 1131 | 'ns3::TypeId', |
| 1132 | [], |
| 1133 | is_const=True) |
| 1134 | return |
| 1135 | |
| 1136 | def register_Ns3ByteTagList_methods(root_module, cls): |
| 1137 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor] |
| 1138 | cls.add_constructor([]) |
| 1139 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor] |
| 1140 | cls.add_constructor([param('ns3::ByteTagList const &', 'o')]) |
| 1141 | ## 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] |
| 1142 | cls.add_method('Add', |
| 1143 | 'ns3::TagBuffer', |
| 1144 | [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')]) |
| 1145 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function] |
| 1146 | cls.add_method('Add', |
| 1147 | 'void', |
| 1148 | [param('ns3::ByteTagList const &', 'o')]) |
| 1149 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function] |
| 1150 | cls.add_method('AddAtEnd', |
| 1151 | 'void', |
| 1152 | [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')]) |
| 1153 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function] |
| 1154 | cls.add_method('AddAtStart', |
| 1155 | 'void', |
| 1156 | [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')]) |
| 1157 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function] |
| 1158 | cls.add_method('Begin', |
| 1159 | 'ns3::ByteTagList::Iterator', |
| 1160 | [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], |
| 1161 | is_const=True) |
| 1162 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function] |
| 1163 | cls.add_method('RemoveAll', |
| 1164 | 'void', |
| 1165 | []) |
| 1166 | return |
| 1167 | |
| 1168 | def register_Ns3ByteTagListIterator_methods(root_module, cls): |
| 1169 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor] |
| 1170 | cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')]) |
| 1171 | ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function] |
| 1172 | cls.add_method('GetOffsetStart', |
| 1173 | 'uint32_t', |
| 1174 | [], |
| 1175 | is_const=True) |
| 1176 | ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function] |
| 1177 | cls.add_method('HasNext', |
| 1178 | 'bool', |
| 1179 | [], |
| 1180 | is_const=True) |
| 1181 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function] |
| 1182 | cls.add_method('Next', |
| 1183 | 'ns3::ByteTagList::Iterator::Item', |
| 1184 | []) |
| 1185 | return |
| 1186 | |
| 1187 | def register_Ns3ByteTagListIteratorItem_methods(root_module, cls): |
| 1188 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor] |
| 1189 | cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')]) |
| 1190 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor] |
| 1191 | cls.add_constructor([param('ns3::TagBuffer', 'buf')]) |
| 1192 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable] |
| 1193 | cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False) |
| 1194 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable] |
| 1195 | cls.add_instance_attribute('end', 'int32_t', is_const=False) |
| 1196 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable] |
| 1197 | cls.add_instance_attribute('size', 'uint32_t', is_const=False) |
| 1198 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable] |
| 1199 | cls.add_instance_attribute('start', 'int32_t', is_const=False) |
| 1200 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable] |
| 1201 | cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False) |
| 1202 | return |
| 1203 | |
| 1204 | def register_Ns3CallbackBase_methods(root_module, cls): |
| 1205 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor] |
| 1206 | cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')]) |
| 1207 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor] |
| 1208 | cls.add_constructor([]) |
| 1209 | ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function] |
| 1210 | cls.add_method('GetImpl', |
| 1211 | 'ns3::Ptr< ns3::CallbackImplBase >', |
| 1212 | [], |
| 1213 | is_const=True) |
| 1214 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor] |
| 1215 | cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], |
| 1216 | visibility='protected') |
| 1217 | ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function] |
| 1218 | cls.add_method('Demangle', |
| 1219 | 'std::string', |
| 1220 | [param('std::string const &', 'mangled')], |
| 1221 | is_static=True, visibility='protected') |
| 1222 | return |
| 1223 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1224 | def register_Ns3CcnxAppHelper_methods(root_module, cls): |
| 1225 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper::CcnxAppHelper(ns3::CcnxAppHelper const & arg0) [copy constructor] |
| 1226 | cls.add_constructor([param('ns3::CcnxAppHelper const &', 'arg0')]) |
| 1227 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper::CcnxAppHelper(std::string const & prefix) [constructor] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1228 | cls.add_constructor([param('std::string const &', 'prefix')]) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1229 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::NodeContainer c) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1230 | cls.add_method('Install', |
| 1231 | 'ns3::ApplicationContainer', |
| 1232 | [param('ns3::NodeContainer', 'c')]) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1233 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::Ptr<ns3::Node> node) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1234 | cls.add_method('Install', |
| 1235 | 'ns3::ApplicationContainer', |
| 1236 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1237 | ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(std::string nodeName) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1238 | cls.add_method('Install', |
| 1239 | 'ns3::ApplicationContainer', |
| 1240 | [param('std::string', 'nodeName')]) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1241 | ## ccnx-app-helper.h (module 'NDNabstraction'): void ns3::CcnxAppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1242 | cls.add_method('SetAttribute', |
| 1243 | 'void', |
| 1244 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 1245 | ## ccnx-app-helper.h (module 'NDNabstraction'): void ns3::CcnxAppHelper::SetPrefix(std::string const & prefix) [member function] |
| 1246 | cls.add_method('SetPrefix', |
| 1247 | 'void', |
| 1248 | [param('std::string const &', 'prefix')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1249 | return |
| 1250 | |
| 1251 | def register_Ns3CcnxContentObjectHeaderException_methods(root_module, cls): |
| 1252 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException() [constructor] |
| 1253 | cls.add_constructor([]) |
| 1254 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException(ns3::CcnxContentObjectHeaderException const & arg0) [copy constructor] |
| 1255 | cls.add_constructor([param('ns3::CcnxContentObjectHeaderException const &', 'arg0')]) |
| 1256 | return |
| 1257 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1258 | def register_Ns3CcnxFibEntryContainer_methods(root_module, cls): |
| 1259 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer() [constructor] |
| 1260 | cls.add_constructor([]) |
| 1261 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer(ns3::CcnxFibEntryContainer const & arg0) [copy constructor] |
| 1262 | cls.add_constructor([param('ns3::CcnxFibEntryContainer const &', 'arg0')]) |
| 1263 | return |
| 1264 | |
| 1265 | def register_Ns3CcnxFibFaceMetric_methods(root_module, cls): |
| 1266 | cls.add_output_stream_operator() |
| 1267 | cls.add_binary_comparison_operator('<') |
| 1268 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::CcnxFibFaceMetric const & arg0) [copy constructor] |
| 1269 | cls.add_constructor([param('ns3::CcnxFibFaceMetric const &', 'arg0')]) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 1270 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t cost) [constructor] |
| 1271 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'cost')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1272 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibFaceMetric::GetFace() const [member function] |
| 1273 | cls.add_method('GetFace', |
| 1274 | 'ns3::Ptr< ns3::CcnxFace >', |
| 1275 | [], |
| 1276 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1277 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibFaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function] |
| 1278 | cls.add_method('UpdateRtt', |
| 1279 | 'void', |
| 1280 | [param('ns3::Time const &', 'rttSample')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1281 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_face [variable] |
| 1282 | cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False) |
| 1283 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_routingCost [variable] |
| 1284 | cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False) |
| 1285 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_rttVar [variable] |
| 1286 | cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False) |
| 1287 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_sRtt [variable] |
| 1288 | cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False) |
| 1289 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_status [variable] |
| 1290 | cls.add_instance_attribute('m_status', 'ns3::CcnxFibFaceMetric::Status', is_const=False) |
| 1291 | return |
| 1292 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1293 | def register_Ns3CcnxFibFaceMetricContainer_methods(root_module, cls): |
| 1294 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer() [constructor] |
| 1295 | cls.add_constructor([]) |
| 1296 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer(ns3::CcnxFibFaceMetricContainer const & arg0) [copy constructor] |
| 1297 | cls.add_constructor([param('ns3::CcnxFibFaceMetricContainer const &', 'arg0')]) |
| 1298 | return |
| 1299 | |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 1300 | def register_Ns3CcnxHeaderHelper_methods(root_module, cls): |
| 1301 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor] |
| 1302 | cls.add_constructor([]) |
| 1303 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor] |
| 1304 | cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')]) |
| 1305 | ## ccnx-header-helper.h (module 'NDNabstraction'): static ns3::CcnxHeaderHelper::Type ns3::CcnxHeaderHelper::GetCcnxHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function] |
| 1306 | cls.add_method('GetCcnxHeaderType', |
| 1307 | 'ns3::CcnxHeaderHelper::Type', |
| 1308 | [param('ns3::Ptr< ns3::Packet const >', 'packet')], |
| 1309 | is_static=True) |
| 1310 | return |
| 1311 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1312 | def register_Ns3CcnxInterestHeaderException_methods(root_module, cls): |
| 1313 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException() [constructor] |
| 1314 | cls.add_constructor([]) |
| 1315 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException(ns3::CcnxInterestHeaderException const & arg0) [copy constructor] |
| 1316 | cls.add_constructor([param('ns3::CcnxInterestHeaderException const &', 'arg0')]) |
| 1317 | return |
| 1318 | |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1319 | def register_Ns3CcnxStackHelper_methods(root_module, cls): |
| 1320 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1321 | cls.add_constructor([]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1322 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetForwardingStrategy(std::string forwardingStrategy) [member function] |
| 1323 | cls.add_method('SetForwardingStrategy', |
| 1324 | 'void', |
| 1325 | [param('std::string', 'forwardingStrategy')]) |
| 1326 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnableLimits(bool enable=true, ns3::Time avgRtt=ns3::Seconds( ), uint32_t avgContentObject=1100, uint32_t avgInterest=40) [member function] |
| 1327 | cls.add_method('EnableLimits', |
| 1328 | 'void', |
| 1329 | [param('bool', 'enable', default_value='true'), param('ns3::Time', 'avgRtt', default_value='ns3::Seconds(0)'), param('uint32_t', 'avgContentObject', default_value='1100'), param('uint32_t', 'avgInterest', default_value='40')]) |
| 1330 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(std::string nodeName) const [member function] |
| 1331 | cls.add_method('Install', |
| 1332 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
| 1333 | [param('std::string', 'nodeName')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1334 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1335 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
| 1336 | cls.add_method('Install', |
| 1337 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
| 1338 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 1339 | is_const=True) |
| 1340 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function] |
| 1341 | cls.add_method('Install', |
| 1342 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
| 1343 | [param('ns3::NodeContainer', 'c')], |
| 1344 | is_const=True) |
| 1345 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::InstallAll() const [member function] |
| 1346 | cls.add_method('InstallAll', |
| 1347 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1348 | [], |
| 1349 | is_const=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1350 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::AddRoute(std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1351 | cls.add_method('AddRoute', |
| 1352 | 'void', |
| 1353 | [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')], |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1354 | is_static=True) |
| 1355 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1356 | cls.add_method('AddRoute', |
| 1357 | 'void', |
| 1358 | [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')], |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1359 | is_static=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1360 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetDefaultRoutes(bool needSet) [member function] |
| 1361 | cls.add_method('SetDefaultRoutes', |
| 1362 | 'void', |
| 1363 | [param('bool', 'needSet')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1364 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallFakeGlobalRoutes() [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1365 | cls.add_method('InstallFakeGlobalRoutes', |
| 1366 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1367 | [], |
| 1368 | is_static=True) |
| 1369 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallFakeGlobalRoutesImpl() [member function] |
| 1370 | cls.add_method('InstallFakeGlobalRoutesImpl', |
| 1371 | 'void', |
| 1372 | [], |
| 1373 | is_static=True) |
| 1374 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRouteTo(ns3::Ptr<ns3::Node> node) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1375 | cls.add_method('InstallRouteTo', |
| 1376 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1377 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 1378 | is_static=True) |
| 1379 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRouteTo(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function] |
| 1380 | cls.add_method('InstallRouteTo', |
| 1381 | 'void', |
| 1382 | [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')], |
| 1383 | is_static=True) |
| 1384 | ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRoutesToAll() [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 1385 | cls.add_method('InstallRoutesToAll', |
| 1386 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1387 | [], |
| 1388 | is_static=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1389 | return |
| 1390 | |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 1391 | def register_Ns3CcnxTraceHelper_methods(root_module, cls): |
| 1392 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper(ns3::CcnxTraceHelper const & arg0) [copy constructor] |
| 1393 | cls.add_constructor([param('ns3::CcnxTraceHelper const &', 'arg0')]) |
| 1394 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper() [constructor] |
| 1395 | cls.add_constructor([]) |
| 1396 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateAppAll(std::string const & app) [member function] |
| 1397 | cls.add_method('EnableAggregateAppAll', |
| 1398 | 'void', |
| 1399 | [param('std::string const &', 'app')]) |
| 1400 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateL3All() [member function] |
| 1401 | cls.add_method('EnableAggregateL3All', |
| 1402 | 'void', |
| 1403 | []) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 1404 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4RateL3All(std::string const & ipv4RateTrace="ipv4-rate.log") [member function] |
| 1405 | cls.add_method('EnableIpv4RateL3All', |
| 1406 | 'void', |
| 1407 | [param('std::string const &', 'ipv4RateTrace', default_value='"ipv4-rate.log"')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1408 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4SeqsAppAll(std::string const & appSeqsTrace="app-seqs.log") [member function] |
| 1409 | cls.add_method('EnableIpv4SeqsAppAll', |
| 1410 | 'void', |
| 1411 | [param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')]) |
| 1412 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnablePathWeights(std::string const & pathWeights) [member function] |
| 1413 | cls.add_method('EnablePathWeights', |
| 1414 | 'void', |
| 1415 | [param('std::string const &', 'pathWeights')]) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 1416 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableRateL3All(std::string const & l3RateTrace="l3-rate.log") [member function] |
| 1417 | cls.add_method('EnableRateL3All', |
| 1418 | 'void', |
| 1419 | [param('std::string const &', 'l3RateTrace', default_value='"l3-rate.log"')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1420 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableSeqsAppAll(std::string const & app, std::string const & appSeqsTrace="app-seqs.log") [member function] |
| 1421 | cls.add_method('EnableSeqsAppAll', |
| 1422 | 'void', |
| 1423 | [param('std::string const &', 'app'), param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')]) |
| 1424 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsAll(std::string const & windowTrace="windows.log") [member function] |
| 1425 | cls.add_method('EnableWindowsAll', |
| 1426 | 'void', |
| 1427 | [param('std::string const &', 'windowTrace', default_value='"windows.log"')]) |
| 1428 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsTcpAll(std::string const & windowTrace) [member function] |
| 1429 | cls.add_method('EnableWindowsTcpAll', |
| 1430 | 'void', |
| 1431 | [param('std::string const &', 'windowTrace')]) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 1432 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetAppTraceFile(std::string const & appTrace="apps.log") [member function] |
| 1433 | cls.add_method('SetAppTraceFile', |
| 1434 | 'void', |
| 1435 | [param('std::string const &', 'appTrace', default_value='"apps.log"')]) |
| 1436 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetL3TraceFile(std::string const & l3Trace="l3.log") [member function] |
| 1437 | cls.add_method('SetL3TraceFile', |
| 1438 | 'void', |
| 1439 | [param('std::string const &', 'l3Trace', default_value='"l3.log"')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1440 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::TcpConnect(ns3::Ptr<ns3::Node> node) [member function] |
| 1441 | cls.add_method('TcpConnect', |
| 1442 | 'void', |
| 1443 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 1444 | return |
| 1445 | |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 1446 | def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls): |
| 1447 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor] |
| 1448 | cls.add_constructor([]) |
| 1449 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor] |
| 1450 | cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')]) |
| 1451 | return |
| 1452 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1453 | def register_Ns3EventId_methods(root_module, cls): |
| 1454 | cls.add_binary_comparison_operator('!=') |
| 1455 | cls.add_binary_comparison_operator('==') |
| 1456 | ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor] |
| 1457 | cls.add_constructor([param('ns3::EventId const &', 'arg0')]) |
| 1458 | ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor] |
| 1459 | cls.add_constructor([]) |
| 1460 | ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor] |
| 1461 | cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')]) |
| 1462 | ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function] |
| 1463 | cls.add_method('Cancel', |
| 1464 | 'void', |
| 1465 | []) |
| 1466 | ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function] |
| 1467 | cls.add_method('GetContext', |
| 1468 | 'uint32_t', |
| 1469 | [], |
| 1470 | is_const=True) |
| 1471 | ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function] |
| 1472 | cls.add_method('GetTs', |
| 1473 | 'uint64_t', |
| 1474 | [], |
| 1475 | is_const=True) |
| 1476 | ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function] |
| 1477 | cls.add_method('GetUid', |
| 1478 | 'uint32_t', |
| 1479 | [], |
| 1480 | is_const=True) |
| 1481 | ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function] |
| 1482 | cls.add_method('IsExpired', |
| 1483 | 'bool', |
| 1484 | [], |
| 1485 | is_const=True) |
| 1486 | ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function] |
| 1487 | cls.add_method('IsRunning', |
| 1488 | 'bool', |
| 1489 | [], |
| 1490 | is_const=True) |
| 1491 | ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function] |
| 1492 | cls.add_method('PeekEventImpl', |
| 1493 | 'ns3::EventImpl *', |
| 1494 | [], |
| 1495 | is_const=True) |
| 1496 | return |
| 1497 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1498 | def register_Ns3IntToType__0_methods(root_module, cls): |
| 1499 | ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType() [constructor] |
| 1500 | cls.add_constructor([]) |
| 1501 | ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType(ns3::IntToType<0> const & arg0) [copy constructor] |
| 1502 | cls.add_constructor([param('ns3::IntToType< 0 > const &', 'arg0')]) |
| 1503 | return |
| 1504 | |
| 1505 | def register_Ns3IntToType__1_methods(root_module, cls): |
| 1506 | ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType() [constructor] |
| 1507 | cls.add_constructor([]) |
| 1508 | ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType(ns3::IntToType<1> const & arg0) [copy constructor] |
| 1509 | cls.add_constructor([param('ns3::IntToType< 1 > const &', 'arg0')]) |
| 1510 | return |
| 1511 | |
| 1512 | def register_Ns3IntToType__2_methods(root_module, cls): |
| 1513 | ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType() [constructor] |
| 1514 | cls.add_constructor([]) |
| 1515 | ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType(ns3::IntToType<2> const & arg0) [copy constructor] |
| 1516 | cls.add_constructor([param('ns3::IntToType< 2 > const &', 'arg0')]) |
| 1517 | return |
| 1518 | |
| 1519 | def register_Ns3IntToType__3_methods(root_module, cls): |
| 1520 | ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType() [constructor] |
| 1521 | cls.add_constructor([]) |
| 1522 | ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType(ns3::IntToType<3> const & arg0) [copy constructor] |
| 1523 | cls.add_constructor([param('ns3::IntToType< 3 > const &', 'arg0')]) |
| 1524 | return |
| 1525 | |
| 1526 | def register_Ns3IntToType__4_methods(root_module, cls): |
| 1527 | ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType() [constructor] |
| 1528 | cls.add_constructor([]) |
| 1529 | ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType(ns3::IntToType<4> const & arg0) [copy constructor] |
| 1530 | cls.add_constructor([param('ns3::IntToType< 4 > const &', 'arg0')]) |
| 1531 | return |
| 1532 | |
| 1533 | def register_Ns3IntToType__5_methods(root_module, cls): |
| 1534 | ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType() [constructor] |
| 1535 | cls.add_constructor([]) |
| 1536 | ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType(ns3::IntToType<5> const & arg0) [copy constructor] |
| 1537 | cls.add_constructor([param('ns3::IntToType< 5 > const &', 'arg0')]) |
| 1538 | return |
| 1539 | |
| 1540 | def register_Ns3IntToType__6_methods(root_module, cls): |
| 1541 | ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType() [constructor] |
| 1542 | cls.add_constructor([]) |
| 1543 | ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType(ns3::IntToType<6> const & arg0) [copy constructor] |
| 1544 | cls.add_constructor([param('ns3::IntToType< 6 > const &', 'arg0')]) |
| 1545 | return |
| 1546 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1547 | def register_Ns3Ipv4Address_methods(root_module, cls): |
| 1548 | cls.add_binary_comparison_operator('!=') |
| 1549 | cls.add_output_stream_operator() |
| 1550 | cls.add_binary_comparison_operator('==') |
| 1551 | cls.add_binary_comparison_operator('<') |
| 1552 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor] |
| 1553 | cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')]) |
| 1554 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor] |
| 1555 | cls.add_constructor([]) |
| 1556 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor] |
| 1557 | cls.add_constructor([param('uint32_t', 'address')]) |
| 1558 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor] |
| 1559 | cls.add_constructor([param('char const *', 'address')]) |
| 1560 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function] |
| 1561 | cls.add_method('CombineMask', |
| 1562 | 'ns3::Ipv4Address', |
| 1563 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 1564 | is_const=True) |
| 1565 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function] |
| 1566 | cls.add_method('ConvertFrom', |
| 1567 | 'ns3::Ipv4Address', |
| 1568 | [param('ns3::Address const &', 'address')], |
| 1569 | is_static=True) |
| 1570 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function] |
| 1571 | cls.add_method('Deserialize', |
| 1572 | 'ns3::Ipv4Address', |
| 1573 | [param('uint8_t const *', 'buf')], |
| 1574 | is_static=True) |
| 1575 | ## ipv4-address.h (module 'network'): uint32_t const & ns3::Ipv4Address::Get() const [member function] |
| 1576 | cls.add_method('Get', |
| 1577 | 'uint32_t const &', |
| 1578 | [], |
| 1579 | is_const=True) |
| 1580 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function] |
| 1581 | cls.add_method('GetAny', |
| 1582 | 'ns3::Ipv4Address', |
| 1583 | [], |
| 1584 | is_static=True) |
| 1585 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function] |
| 1586 | cls.add_method('GetBroadcast', |
| 1587 | 'ns3::Ipv4Address', |
| 1588 | [], |
| 1589 | is_static=True) |
| 1590 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function] |
| 1591 | cls.add_method('GetLoopback', |
| 1592 | 'ns3::Ipv4Address', |
| 1593 | [], |
| 1594 | is_static=True) |
| 1595 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
| 1596 | cls.add_method('GetSubnetDirectedBroadcast', |
| 1597 | 'ns3::Ipv4Address', |
| 1598 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 1599 | is_const=True) |
| 1600 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function] |
| 1601 | cls.add_method('GetZero', |
| 1602 | 'ns3::Ipv4Address', |
| 1603 | [], |
| 1604 | is_static=True) |
| 1605 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function] |
| 1606 | cls.add_method('IsBroadcast', |
| 1607 | 'bool', |
| 1608 | [], |
| 1609 | is_const=True) |
| 1610 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function] |
| 1611 | cls.add_method('IsEqual', |
| 1612 | 'bool', |
| 1613 | [param('ns3::Ipv4Address const &', 'other')], |
| 1614 | is_const=True) |
| 1615 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function] |
| 1616 | cls.add_method('IsLocalMulticast', |
| 1617 | 'bool', |
| 1618 | [], |
| 1619 | is_const=True) |
| 1620 | ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function] |
| 1621 | cls.add_method('IsMatchingType', |
| 1622 | 'bool', |
| 1623 | [param('ns3::Address const &', 'address')], |
| 1624 | is_static=True) |
| 1625 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function] |
| 1626 | cls.add_method('IsMulticast', |
| 1627 | 'bool', |
| 1628 | [], |
| 1629 | is_const=True) |
| 1630 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
| 1631 | cls.add_method('IsSubnetDirectedBroadcast', |
| 1632 | 'bool', |
| 1633 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 1634 | is_const=True) |
| 1635 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function] |
| 1636 | cls.add_method('Print', |
| 1637 | 'void', |
| 1638 | [param('std::ostream &', 'os')], |
| 1639 | is_const=True) |
| 1640 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function] |
| 1641 | cls.add_method('Serialize', |
| 1642 | 'void', |
| 1643 | [param('uint8_t *', 'buf')], |
| 1644 | is_const=True) |
| 1645 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function] |
| 1646 | cls.add_method('Set', |
| 1647 | 'void', |
| 1648 | [param('uint32_t', 'address')]) |
| 1649 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function] |
| 1650 | cls.add_method('Set', |
| 1651 | 'void', |
| 1652 | [param('char const *', 'address')]) |
| 1653 | return |
| 1654 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 1655 | def register_Ns3Ipv4InterfaceAddress_methods(root_module, cls): |
| 1656 | cls.add_binary_comparison_operator('!=') |
| 1657 | cls.add_output_stream_operator() |
| 1658 | cls.add_binary_comparison_operator('==') |
| 1659 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress() [constructor] |
| 1660 | cls.add_constructor([]) |
| 1661 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4Address local, ns3::Ipv4Mask mask) [constructor] |
| 1662 | cls.add_constructor([param('ns3::Ipv4Address', 'local'), param('ns3::Ipv4Mask', 'mask')]) |
| 1663 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4InterfaceAddress const & o) [copy constructor] |
| 1664 | cls.add_constructor([param('ns3::Ipv4InterfaceAddress const &', 'o')]) |
| 1665 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetBroadcast() const [member function] |
| 1666 | cls.add_method('GetBroadcast', |
| 1667 | 'ns3::Ipv4Address', |
| 1668 | [], |
| 1669 | is_const=True) |
| 1670 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetLocal() const [member function] |
| 1671 | cls.add_method('GetLocal', |
| 1672 | 'ns3::Ipv4Address', |
| 1673 | [], |
| 1674 | is_const=True) |
| 1675 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Mask ns3::Ipv4InterfaceAddress::GetMask() const [member function] |
| 1676 | cls.add_method('GetMask', |
| 1677 | 'ns3::Ipv4Mask', |
| 1678 | [], |
| 1679 | is_const=True) |
| 1680 | ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e ns3::Ipv4InterfaceAddress::GetScope() const [member function] |
| 1681 | cls.add_method('GetScope', |
| 1682 | 'ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', |
| 1683 | [], |
| 1684 | is_const=True) |
| 1685 | ## ipv4-interface-address.h (module 'internet'): bool ns3::Ipv4InterfaceAddress::IsSecondary() const [member function] |
| 1686 | cls.add_method('IsSecondary', |
| 1687 | 'bool', |
| 1688 | [], |
| 1689 | is_const=True) |
| 1690 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetBroadcast(ns3::Ipv4Address broadcast) [member function] |
| 1691 | cls.add_method('SetBroadcast', |
| 1692 | 'void', |
| 1693 | [param('ns3::Ipv4Address', 'broadcast')]) |
| 1694 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetLocal(ns3::Ipv4Address local) [member function] |
| 1695 | cls.add_method('SetLocal', |
| 1696 | 'void', |
| 1697 | [param('ns3::Ipv4Address', 'local')]) |
| 1698 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetMask(ns3::Ipv4Mask mask) [member function] |
| 1699 | cls.add_method('SetMask', |
| 1700 | 'void', |
| 1701 | [param('ns3::Ipv4Mask', 'mask')]) |
| 1702 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetPrimary() [member function] |
| 1703 | cls.add_method('SetPrimary', |
| 1704 | 'void', |
| 1705 | []) |
| 1706 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetScope(ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function] |
| 1707 | cls.add_method('SetScope', |
| 1708 | 'void', |
| 1709 | [param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')]) |
| 1710 | ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetSecondary() [member function] |
| 1711 | cls.add_method('SetSecondary', |
| 1712 | 'void', |
| 1713 | []) |
| 1714 | return |
| 1715 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1716 | def register_Ns3Ipv4Mask_methods(root_module, cls): |
| 1717 | cls.add_binary_comparison_operator('!=') |
| 1718 | cls.add_output_stream_operator() |
| 1719 | cls.add_binary_comparison_operator('==') |
| 1720 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor] |
| 1721 | cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')]) |
| 1722 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor] |
| 1723 | cls.add_constructor([]) |
| 1724 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor] |
| 1725 | cls.add_constructor([param('uint32_t', 'mask')]) |
| 1726 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor] |
| 1727 | cls.add_constructor([param('char const *', 'mask')]) |
| 1728 | ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function] |
| 1729 | cls.add_method('Get', |
| 1730 | 'uint32_t', |
| 1731 | [], |
| 1732 | is_const=True) |
| 1733 | ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function] |
| 1734 | cls.add_method('GetInverse', |
| 1735 | 'uint32_t', |
| 1736 | [], |
| 1737 | is_const=True) |
| 1738 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function] |
| 1739 | cls.add_method('GetLoopback', |
| 1740 | 'ns3::Ipv4Mask', |
| 1741 | [], |
| 1742 | is_static=True) |
| 1743 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function] |
| 1744 | cls.add_method('GetOnes', |
| 1745 | 'ns3::Ipv4Mask', |
| 1746 | [], |
| 1747 | is_static=True) |
| 1748 | ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function] |
| 1749 | cls.add_method('GetPrefixLength', |
| 1750 | 'uint16_t', |
| 1751 | [], |
| 1752 | is_const=True) |
| 1753 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function] |
| 1754 | cls.add_method('GetZero', |
| 1755 | 'ns3::Ipv4Mask', |
| 1756 | [], |
| 1757 | is_static=True) |
| 1758 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function] |
| 1759 | cls.add_method('IsEqual', |
| 1760 | 'bool', |
| 1761 | [param('ns3::Ipv4Mask', 'other')], |
| 1762 | is_const=True) |
| 1763 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function] |
| 1764 | cls.add_method('IsMatch', |
| 1765 | 'bool', |
| 1766 | [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], |
| 1767 | is_const=True) |
| 1768 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function] |
| 1769 | cls.add_method('Print', |
| 1770 | 'void', |
| 1771 | [param('std::ostream &', 'os')], |
| 1772 | is_const=True) |
| 1773 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function] |
| 1774 | cls.add_method('Set', |
| 1775 | 'void', |
| 1776 | [param('uint32_t', 'mask')]) |
| 1777 | return |
| 1778 | |
| 1779 | def register_Ns3Ipv6Address_methods(root_module, cls): |
| 1780 | cls.add_binary_comparison_operator('!=') |
| 1781 | cls.add_output_stream_operator() |
| 1782 | cls.add_binary_comparison_operator('==') |
| 1783 | cls.add_binary_comparison_operator('<') |
| 1784 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor] |
| 1785 | cls.add_constructor([]) |
| 1786 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor] |
| 1787 | cls.add_constructor([param('char const *', 'address')]) |
| 1788 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor] |
| 1789 | cls.add_constructor([param('uint8_t *', 'address')]) |
| 1790 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor] |
| 1791 | cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')]) |
| 1792 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor] |
| 1793 | cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')]) |
| 1794 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function] |
| 1795 | cls.add_method('CombinePrefix', |
| 1796 | 'ns3::Ipv6Address', |
| 1797 | [param('ns3::Ipv6Prefix const &', 'prefix')]) |
| 1798 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function] |
| 1799 | cls.add_method('ConvertFrom', |
| 1800 | 'ns3::Ipv6Address', |
| 1801 | [param('ns3::Address const &', 'address')], |
| 1802 | is_static=True) |
| 1803 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function] |
| 1804 | cls.add_method('Deserialize', |
| 1805 | 'ns3::Ipv6Address', |
| 1806 | [param('uint8_t const *', 'buf')], |
| 1807 | is_static=True) |
| 1808 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function] |
| 1809 | cls.add_method('GetAllHostsMulticast', |
| 1810 | 'ns3::Ipv6Address', |
| 1811 | [], |
| 1812 | is_static=True) |
| 1813 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function] |
| 1814 | cls.add_method('GetAllNodesMulticast', |
| 1815 | 'ns3::Ipv6Address', |
| 1816 | [], |
| 1817 | is_static=True) |
| 1818 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function] |
| 1819 | cls.add_method('GetAllRoutersMulticast', |
| 1820 | 'ns3::Ipv6Address', |
| 1821 | [], |
| 1822 | is_static=True) |
| 1823 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function] |
| 1824 | cls.add_method('GetAny', |
| 1825 | 'ns3::Ipv6Address', |
| 1826 | [], |
| 1827 | is_static=True) |
| 1828 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function] |
| 1829 | cls.add_method('GetBytes', |
| 1830 | 'void', |
| 1831 | [param('uint8_t *', 'buf')], |
| 1832 | is_const=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1833 | ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function] |
| 1834 | cls.add_method('GetIpv4MappedAddress', |
| 1835 | 'ns3::Ipv4Address', |
| 1836 | [], |
| 1837 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1838 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function] |
| 1839 | cls.add_method('GetLoopback', |
| 1840 | 'ns3::Ipv6Address', |
| 1841 | [], |
| 1842 | is_static=True) |
| 1843 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function] |
| 1844 | cls.add_method('GetOnes', |
| 1845 | 'ns3::Ipv6Address', |
| 1846 | [], |
| 1847 | is_static=True) |
| 1848 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function] |
| 1849 | cls.add_method('GetZero', |
| 1850 | 'ns3::Ipv6Address', |
| 1851 | [], |
| 1852 | is_static=True) |
| 1853 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function] |
| 1854 | cls.add_method('IsAllHostsMulticast', |
| 1855 | 'bool', |
| 1856 | [], |
| 1857 | is_const=True) |
| 1858 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function] |
| 1859 | cls.add_method('IsAllNodesMulticast', |
| 1860 | 'bool', |
| 1861 | [], |
| 1862 | is_const=True) |
| 1863 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function] |
| 1864 | cls.add_method('IsAllRoutersMulticast', |
| 1865 | 'bool', |
| 1866 | [], |
| 1867 | is_const=True) |
| 1868 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function] |
| 1869 | cls.add_method('IsAny', |
| 1870 | 'bool', |
| 1871 | [], |
| 1872 | is_const=True) |
| 1873 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function] |
| 1874 | cls.add_method('IsEqual', |
| 1875 | 'bool', |
| 1876 | [param('ns3::Ipv6Address const &', 'other')], |
| 1877 | is_const=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1878 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function] |
| 1879 | cls.add_method('IsIpv4MappedAddress', |
| 1880 | 'bool', |
| 1881 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1882 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function] |
| 1883 | cls.add_method('IsLinkLocal', |
| 1884 | 'bool', |
| 1885 | [], |
| 1886 | is_const=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1887 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function] |
| 1888 | cls.add_method('IsLinkLocalMulticast', |
| 1889 | 'bool', |
| 1890 | [], |
| 1891 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1892 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function] |
| 1893 | cls.add_method('IsLocalhost', |
| 1894 | 'bool', |
| 1895 | [], |
| 1896 | is_const=True) |
| 1897 | ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function] |
| 1898 | cls.add_method('IsMatchingType', |
| 1899 | 'bool', |
| 1900 | [param('ns3::Address const &', 'address')], |
| 1901 | is_static=True) |
| 1902 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function] |
| 1903 | cls.add_method('IsMulticast', |
| 1904 | 'bool', |
| 1905 | [], |
| 1906 | is_const=True) |
| 1907 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function] |
| 1908 | cls.add_method('IsSolicitedMulticast', |
| 1909 | 'bool', |
| 1910 | [], |
| 1911 | is_const=True) |
| 1912 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function] |
| 1913 | cls.add_method('MakeAutoconfiguredAddress', |
| 1914 | 'ns3::Ipv6Address', |
| 1915 | [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], |
| 1916 | is_static=True) |
| 1917 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function] |
| 1918 | cls.add_method('MakeAutoconfiguredLinkLocalAddress', |
| 1919 | 'ns3::Ipv6Address', |
| 1920 | [param('ns3::Mac48Address', 'mac')], |
| 1921 | is_static=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1922 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function] |
| 1923 | cls.add_method('MakeIpv4MappedAddress', |
| 1924 | 'ns3::Ipv6Address', |
| 1925 | [param('ns3::Ipv4Address', 'addr')], |
| 1926 | is_static=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 1927 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function] |
| 1928 | cls.add_method('MakeSolicitedAddress', |
| 1929 | 'ns3::Ipv6Address', |
| 1930 | [param('ns3::Ipv6Address', 'addr')], |
| 1931 | is_static=True) |
| 1932 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function] |
| 1933 | cls.add_method('Print', |
| 1934 | 'void', |
| 1935 | [param('std::ostream &', 'os')], |
| 1936 | is_const=True) |
| 1937 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function] |
| 1938 | cls.add_method('Serialize', |
| 1939 | 'void', |
| 1940 | [param('uint8_t *', 'buf')], |
| 1941 | is_const=True) |
| 1942 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function] |
| 1943 | cls.add_method('Set', |
| 1944 | 'void', |
| 1945 | [param('char const *', 'address')]) |
| 1946 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function] |
| 1947 | cls.add_method('Set', |
| 1948 | 'void', |
| 1949 | [param('uint8_t *', 'address')]) |
| 1950 | return |
| 1951 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 1952 | def register_Ns3Ipv6InterfaceAddress_methods(root_module, cls): |
| 1953 | cls.add_binary_comparison_operator('!=') |
| 1954 | cls.add_output_stream_operator() |
| 1955 | cls.add_binary_comparison_operator('==') |
| 1956 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress() [constructor] |
| 1957 | cls.add_constructor([]) |
| 1958 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address) [constructor] |
| 1959 | cls.add_constructor([param('ns3::Ipv6Address', 'address')]) |
| 1960 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address, ns3::Ipv6Prefix prefix) [constructor] |
| 1961 | cls.add_constructor([param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6Prefix', 'prefix')]) |
| 1962 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6InterfaceAddress const & o) [copy constructor] |
| 1963 | cls.add_constructor([param('ns3::Ipv6InterfaceAddress const &', 'o')]) |
| 1964 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6InterfaceAddress::GetAddress() const [member function] |
| 1965 | cls.add_method('GetAddress', |
| 1966 | 'ns3::Ipv6Address', |
| 1967 | [], |
| 1968 | is_const=True) |
| 1969 | ## ipv6-interface-address.h (module 'internet'): uint32_t ns3::Ipv6InterfaceAddress::GetNsDadUid() const [member function] |
| 1970 | cls.add_method('GetNsDadUid', |
| 1971 | 'uint32_t', |
| 1972 | [], |
| 1973 | is_const=True) |
| 1974 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Prefix ns3::Ipv6InterfaceAddress::GetPrefix() const [member function] |
| 1975 | cls.add_method('GetPrefix', |
| 1976 | 'ns3::Ipv6Prefix', |
| 1977 | [], |
| 1978 | is_const=True) |
| 1979 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e ns3::Ipv6InterfaceAddress::GetScope() const [member function] |
| 1980 | cls.add_method('GetScope', |
| 1981 | 'ns3::Ipv6InterfaceAddress::Scope_e', |
| 1982 | [], |
| 1983 | is_const=True) |
| 1984 | ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e ns3::Ipv6InterfaceAddress::GetState() const [member function] |
| 1985 | cls.add_method('GetState', |
| 1986 | 'ns3::Ipv6InterfaceAddress::State_e', |
| 1987 | [], |
| 1988 | is_const=True) |
| 1989 | ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetAddress(ns3::Ipv6Address address) [member function] |
| 1990 | cls.add_method('SetAddress', |
| 1991 | 'void', |
| 1992 | [param('ns3::Ipv6Address', 'address')]) |
| 1993 | ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetNsDadUid(uint32_t uid) [member function] |
| 1994 | cls.add_method('SetNsDadUid', |
| 1995 | 'void', |
| 1996 | [param('uint32_t', 'uid')]) |
| 1997 | ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetScope(ns3::Ipv6InterfaceAddress::Scope_e scope) [member function] |
| 1998 | cls.add_method('SetScope', |
| 1999 | 'void', |
| 2000 | [param('ns3::Ipv6InterfaceAddress::Scope_e', 'scope')]) |
| 2001 | ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetState(ns3::Ipv6InterfaceAddress::State_e state) [member function] |
| 2002 | cls.add_method('SetState', |
| 2003 | 'void', |
| 2004 | [param('ns3::Ipv6InterfaceAddress::State_e', 'state')]) |
| 2005 | return |
| 2006 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2007 | def register_Ns3Ipv6Prefix_methods(root_module, cls): |
| 2008 | cls.add_binary_comparison_operator('!=') |
| 2009 | cls.add_output_stream_operator() |
| 2010 | cls.add_binary_comparison_operator('==') |
| 2011 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor] |
| 2012 | cls.add_constructor([]) |
| 2013 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor] |
| 2014 | cls.add_constructor([param('uint8_t *', 'prefix')]) |
| 2015 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor] |
| 2016 | cls.add_constructor([param('char const *', 'prefix')]) |
| 2017 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor] |
| 2018 | cls.add_constructor([param('uint8_t', 'prefix')]) |
| 2019 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor] |
| 2020 | cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')]) |
| 2021 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor] |
| 2022 | cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')]) |
| 2023 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function] |
| 2024 | cls.add_method('GetBytes', |
| 2025 | 'void', |
| 2026 | [param('uint8_t *', 'buf')], |
| 2027 | is_const=True) |
| 2028 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function] |
| 2029 | cls.add_method('GetLoopback', |
| 2030 | 'ns3::Ipv6Prefix', |
| 2031 | [], |
| 2032 | is_static=True) |
| 2033 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function] |
| 2034 | cls.add_method('GetOnes', |
| 2035 | 'ns3::Ipv6Prefix', |
| 2036 | [], |
| 2037 | is_static=True) |
| 2038 | ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function] |
| 2039 | cls.add_method('GetPrefixLength', |
| 2040 | 'uint8_t', |
| 2041 | [], |
| 2042 | is_const=True) |
| 2043 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function] |
| 2044 | cls.add_method('GetZero', |
| 2045 | 'ns3::Ipv6Prefix', |
| 2046 | [], |
| 2047 | is_static=True) |
| 2048 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function] |
| 2049 | cls.add_method('IsEqual', |
| 2050 | 'bool', |
| 2051 | [param('ns3::Ipv6Prefix const &', 'other')], |
| 2052 | is_const=True) |
| 2053 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function] |
| 2054 | cls.add_method('IsMatch', |
| 2055 | 'bool', |
| 2056 | [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], |
| 2057 | is_const=True) |
| 2058 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function] |
| 2059 | cls.add_method('Print', |
| 2060 | 'void', |
| 2061 | [param('std::ostream &', 'os')], |
| 2062 | is_const=True) |
| 2063 | return |
| 2064 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2065 | def register_Ns3NetDeviceContainer_methods(root_module, cls): |
| 2066 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor] |
| 2067 | cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')]) |
| 2068 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor] |
| 2069 | cls.add_constructor([]) |
| 2070 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor] |
| 2071 | cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')]) |
| 2072 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor] |
| 2073 | cls.add_constructor([param('std::string', 'devName')]) |
| 2074 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor] |
| 2075 | cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')]) |
| 2076 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function] |
| 2077 | cls.add_method('Add', |
| 2078 | 'void', |
| 2079 | [param('ns3::NetDeviceContainer', 'other')]) |
| 2080 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 2081 | cls.add_method('Add', |
| 2082 | 'void', |
| 2083 | [param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
| 2084 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function] |
| 2085 | cls.add_method('Add', |
| 2086 | 'void', |
| 2087 | [param('std::string', 'deviceName')]) |
| 2088 | ## 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] |
| 2089 | cls.add_method('Begin', |
| 2090 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', |
| 2091 | [], |
| 2092 | is_const=True) |
| 2093 | ## 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] |
| 2094 | cls.add_method('End', |
| 2095 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', |
| 2096 | [], |
| 2097 | is_const=True) |
| 2098 | ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function] |
| 2099 | cls.add_method('Get', |
| 2100 | 'ns3::Ptr< ns3::NetDevice >', |
| 2101 | [param('uint32_t', 'i')], |
| 2102 | is_const=True) |
| 2103 | ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function] |
| 2104 | cls.add_method('GetN', |
| 2105 | 'uint32_t', |
| 2106 | [], |
| 2107 | is_const=True) |
| 2108 | return |
| 2109 | |
| 2110 | def register_Ns3NodeContainer_methods(root_module, cls): |
| 2111 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor] |
| 2112 | cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')]) |
| 2113 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor] |
| 2114 | cls.add_constructor([]) |
| 2115 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor] |
| 2116 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
| 2117 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor] |
| 2118 | cls.add_constructor([param('std::string', 'nodeName')]) |
| 2119 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor] |
| 2120 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')]) |
| 2121 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor] |
| 2122 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')]) |
| 2123 | ## 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] |
| 2124 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')]) |
| 2125 | ## 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] |
| 2126 | 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')]) |
| 2127 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function] |
| 2128 | cls.add_method('Add', |
| 2129 | 'void', |
| 2130 | [param('ns3::NodeContainer', 'other')]) |
| 2131 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function] |
| 2132 | cls.add_method('Add', |
| 2133 | 'void', |
| 2134 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 2135 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function] |
| 2136 | cls.add_method('Add', |
| 2137 | 'void', |
| 2138 | [param('std::string', 'nodeName')]) |
| 2139 | ## 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] |
| 2140 | cls.add_method('Begin', |
| 2141 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', |
| 2142 | [], |
| 2143 | is_const=True) |
| 2144 | ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function] |
| 2145 | cls.add_method('Create', |
| 2146 | 'void', |
| 2147 | [param('uint32_t', 'n')]) |
| 2148 | ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function] |
| 2149 | cls.add_method('Create', |
| 2150 | 'void', |
| 2151 | [param('uint32_t', 'n'), param('uint32_t', 'systemId')]) |
| 2152 | ## 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] |
| 2153 | cls.add_method('End', |
| 2154 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', |
| 2155 | [], |
| 2156 | is_const=True) |
| 2157 | ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function] |
| 2158 | cls.add_method('Get', |
| 2159 | 'ns3::Ptr< ns3::Node >', |
| 2160 | [param('uint32_t', 'i')], |
| 2161 | is_const=True) |
| 2162 | ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function] |
| 2163 | cls.add_method('GetGlobal', |
| 2164 | 'ns3::NodeContainer', |
| 2165 | [], |
| 2166 | is_static=True) |
| 2167 | ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function] |
| 2168 | cls.add_method('GetN', |
| 2169 | 'uint32_t', |
| 2170 | [], |
| 2171 | is_const=True) |
| 2172 | ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::NodeContainer other) [member operator] |
| 2173 | cls.add_method('operator()', |
| 2174 | 'ns3::NodeContainer &', |
| 2175 | [param('ns3::NodeContainer', 'other')], |
| 2176 | custom_name='__call__') |
| 2177 | ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::Ptr<ns3::Node> node) [member operator] |
| 2178 | cls.add_method('operator()', |
| 2179 | 'ns3::NodeContainer &', |
| 2180 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 2181 | custom_name='__call__') |
| 2182 | ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(std::string nodeName) [member operator] |
| 2183 | cls.add_method('operator()', |
| 2184 | 'ns3::NodeContainer &', |
| 2185 | [param('std::string', 'nodeName')], |
| 2186 | custom_name='__call__') |
| 2187 | return |
| 2188 | |
| 2189 | def register_Ns3ObjectBase_methods(root_module, cls): |
| 2190 | ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor] |
| 2191 | cls.add_constructor([]) |
| 2192 | ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor] |
| 2193 | cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')]) |
| 2194 | ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function] |
| 2195 | cls.add_method('GetAttribute', |
| 2196 | 'void', |
| 2197 | [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], |
| 2198 | is_const=True) |
| 2199 | ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function] |
| 2200 | cls.add_method('GetAttributeFailSafe', |
| 2201 | 'bool', |
| 2202 | [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], |
| 2203 | is_const=True) |
| 2204 | ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function] |
| 2205 | cls.add_method('GetInstanceTypeId', |
| 2206 | 'ns3::TypeId', |
| 2207 | [], |
| 2208 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 2209 | ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function] |
| 2210 | cls.add_method('GetTypeId', |
| 2211 | 'ns3::TypeId', |
| 2212 | [], |
| 2213 | is_static=True) |
| 2214 | ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 2215 | cls.add_method('SetAttribute', |
| 2216 | 'void', |
| 2217 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 2218 | ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function] |
| 2219 | cls.add_method('SetAttributeFailSafe', |
| 2220 | 'bool', |
| 2221 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 2222 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
| 2223 | cls.add_method('TraceConnect', |
| 2224 | 'bool', |
| 2225 | [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
| 2226 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
| 2227 | cls.add_method('TraceConnectWithoutContext', |
| 2228 | 'bool', |
| 2229 | [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
| 2230 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
| 2231 | cls.add_method('TraceDisconnect', |
| 2232 | 'bool', |
| 2233 | [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
| 2234 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
| 2235 | cls.add_method('TraceDisconnectWithoutContext', |
| 2236 | 'bool', |
| 2237 | [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
| 2238 | ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function] |
| 2239 | cls.add_method('ConstructSelf', |
| 2240 | 'void', |
| 2241 | [param('ns3::AttributeConstructionList const &', 'attributes')], |
| 2242 | visibility='protected') |
| 2243 | ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function] |
| 2244 | cls.add_method('NotifyConstructionCompleted', |
| 2245 | 'void', |
| 2246 | [], |
| 2247 | visibility='protected', is_virtual=True) |
| 2248 | return |
| 2249 | |
| 2250 | def register_Ns3ObjectDeleter_methods(root_module, cls): |
| 2251 | ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor] |
| 2252 | cls.add_constructor([]) |
| 2253 | ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor] |
| 2254 | cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')]) |
| 2255 | ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function] |
| 2256 | cls.add_method('Delete', |
| 2257 | 'void', |
| 2258 | [param('ns3::Object *', 'object')], |
| 2259 | is_static=True) |
| 2260 | return |
| 2261 | |
| 2262 | def register_Ns3ObjectFactory_methods(root_module, cls): |
| 2263 | cls.add_output_stream_operator() |
| 2264 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor] |
| 2265 | cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')]) |
| 2266 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor] |
| 2267 | cls.add_constructor([]) |
| 2268 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor] |
| 2269 | cls.add_constructor([param('std::string', 'typeId')]) |
| 2270 | ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function] |
| 2271 | cls.add_method('Create', |
| 2272 | 'ns3::Ptr< ns3::Object >', |
| 2273 | [], |
| 2274 | is_const=True) |
| 2275 | ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function] |
| 2276 | cls.add_method('GetTypeId', |
| 2277 | 'ns3::TypeId', |
| 2278 | [], |
| 2279 | is_const=True) |
| 2280 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function] |
| 2281 | cls.add_method('Set', |
| 2282 | 'void', |
| 2283 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 2284 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function] |
| 2285 | cls.add_method('SetTypeId', |
| 2286 | 'void', |
| 2287 | [param('ns3::TypeId', 'tid')]) |
| 2288 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function] |
| 2289 | cls.add_method('SetTypeId', |
| 2290 | 'void', |
| 2291 | [param('char const *', 'tid')]) |
| 2292 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function] |
| 2293 | cls.add_method('SetTypeId', |
| 2294 | 'void', |
| 2295 | [param('std::string', 'tid')]) |
| 2296 | return |
| 2297 | |
| 2298 | def register_Ns3PacketMetadata_methods(root_module, cls): |
| 2299 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor] |
| 2300 | cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')]) |
| 2301 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor] |
| 2302 | cls.add_constructor([param('ns3::PacketMetadata const &', 'o')]) |
| 2303 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function] |
| 2304 | cls.add_method('AddAtEnd', |
| 2305 | 'void', |
| 2306 | [param('ns3::PacketMetadata const &', 'o')]) |
| 2307 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function] |
| 2308 | cls.add_method('AddHeader', |
| 2309 | 'void', |
| 2310 | [param('ns3::Header const &', 'header'), param('uint32_t', 'size')]) |
| 2311 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function] |
| 2312 | cls.add_method('AddPaddingAtEnd', |
| 2313 | 'void', |
| 2314 | [param('uint32_t', 'end')]) |
| 2315 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function] |
| 2316 | cls.add_method('AddTrailer', |
| 2317 | 'void', |
| 2318 | [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')]) |
| 2319 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function] |
| 2320 | cls.add_method('BeginItem', |
| 2321 | 'ns3::PacketMetadata::ItemIterator', |
| 2322 | [param('ns3::Buffer', 'buffer')], |
| 2323 | is_const=True) |
| 2324 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function] |
| 2325 | cls.add_method('CreateFragment', |
| 2326 | 'ns3::PacketMetadata', |
| 2327 | [param('uint32_t', 'start'), param('uint32_t', 'end')], |
| 2328 | is_const=True) |
| 2329 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function] |
| 2330 | cls.add_method('Deserialize', |
| 2331 | 'uint32_t', |
| 2332 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 2333 | ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function] |
| 2334 | cls.add_method('Enable', |
| 2335 | 'void', |
| 2336 | [], |
| 2337 | is_static=True) |
| 2338 | ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function] |
| 2339 | cls.add_method('EnableChecking', |
| 2340 | 'void', |
| 2341 | [], |
| 2342 | is_static=True) |
| 2343 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function] |
| 2344 | cls.add_method('GetSerializedSize', |
| 2345 | 'uint32_t', |
| 2346 | [], |
| 2347 | is_const=True) |
| 2348 | ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function] |
| 2349 | cls.add_method('GetUid', |
| 2350 | 'uint64_t', |
| 2351 | [], |
| 2352 | is_const=True) |
| 2353 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function] |
| 2354 | cls.add_method('RemoveAtEnd', |
| 2355 | 'void', |
| 2356 | [param('uint32_t', 'end')]) |
| 2357 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function] |
| 2358 | cls.add_method('RemoveAtStart', |
| 2359 | 'void', |
| 2360 | [param('uint32_t', 'start')]) |
| 2361 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function] |
| 2362 | cls.add_method('RemoveHeader', |
| 2363 | 'void', |
| 2364 | [param('ns3::Header const &', 'header'), param('uint32_t', 'size')]) |
| 2365 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function] |
| 2366 | cls.add_method('RemoveTrailer', |
| 2367 | 'void', |
| 2368 | [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')]) |
| 2369 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 2370 | cls.add_method('Serialize', |
| 2371 | 'uint32_t', |
| 2372 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 2373 | is_const=True) |
| 2374 | return |
| 2375 | |
| 2376 | def register_Ns3PacketMetadataItem_methods(root_module, cls): |
| 2377 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor] |
| 2378 | cls.add_constructor([]) |
| 2379 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor] |
| 2380 | cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')]) |
| 2381 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable] |
| 2382 | cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False) |
| 2383 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable] |
| 2384 | cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False) |
| 2385 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable] |
| 2386 | cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False) |
| 2387 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable] |
| 2388 | cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False) |
| 2389 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable] |
| 2390 | cls.add_instance_attribute('isFragment', 'bool', is_const=False) |
| 2391 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable] |
| 2392 | cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False) |
| 2393 | return |
| 2394 | |
| 2395 | def register_Ns3PacketMetadataItemIterator_methods(root_module, cls): |
| 2396 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor] |
| 2397 | cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')]) |
| 2398 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor] |
| 2399 | cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')]) |
| 2400 | ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function] |
| 2401 | cls.add_method('HasNext', |
| 2402 | 'bool', |
| 2403 | [], |
| 2404 | is_const=True) |
| 2405 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function] |
| 2406 | cls.add_method('Next', |
| 2407 | 'ns3::PacketMetadata::Item', |
| 2408 | []) |
| 2409 | return |
| 2410 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2411 | def register_Ns3RandomVariable_methods(root_module, cls): |
| 2412 | cls.add_output_stream_operator() |
| 2413 | ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor] |
| 2414 | cls.add_constructor([]) |
| 2415 | ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor] |
| 2416 | cls.add_constructor([param('ns3::RandomVariable const &', 'o')]) |
| 2417 | ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function] |
| 2418 | cls.add_method('GetInteger', |
| 2419 | 'uint32_t', |
| 2420 | [], |
| 2421 | is_const=True) |
| 2422 | ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function] |
| 2423 | cls.add_method('GetValue', |
| 2424 | 'double', |
| 2425 | [], |
| 2426 | is_const=True) |
| 2427 | return |
| 2428 | |
| 2429 | def register_Ns3SeedManager_methods(root_module, cls): |
| 2430 | ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor] |
| 2431 | cls.add_constructor([]) |
| 2432 | ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor] |
| 2433 | cls.add_constructor([param('ns3::SeedManager const &', 'arg0')]) |
| 2434 | ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function] |
| 2435 | cls.add_method('CheckSeed', |
| 2436 | 'bool', |
| 2437 | [param('uint32_t', 'seed')], |
| 2438 | is_static=True) |
| 2439 | ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function] |
| 2440 | cls.add_method('GetRun', |
| 2441 | 'uint32_t', |
| 2442 | [], |
| 2443 | is_static=True) |
| 2444 | ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function] |
| 2445 | cls.add_method('GetSeed', |
| 2446 | 'uint32_t', |
| 2447 | [], |
| 2448 | is_static=True) |
| 2449 | ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function] |
| 2450 | cls.add_method('SetRun', |
| 2451 | 'void', |
| 2452 | [param('uint32_t', 'run')], |
| 2453 | is_static=True) |
| 2454 | ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function] |
| 2455 | cls.add_method('SetSeed', |
| 2456 | 'void', |
| 2457 | [param('uint32_t', 'seed')], |
| 2458 | is_static=True) |
| 2459 | return |
| 2460 | |
| 2461 | def register_Ns3SequentialVariable_methods(root_module, cls): |
| 2462 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor] |
| 2463 | cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')]) |
| 2464 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor] |
| 2465 | cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')]) |
| 2466 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor] |
| 2467 | cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')]) |
| 2468 | return |
| 2469 | |
| 2470 | def register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, cls): |
| 2471 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount() [constructor] |
| 2472 | cls.add_constructor([]) |
| 2473 | ## 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] |
| 2474 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter< ns3::Chunk > > const &', 'o')]) |
| 2475 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::Cleanup() [member function] |
| 2476 | cls.add_method('Cleanup', |
| 2477 | 'void', |
| 2478 | [], |
| 2479 | is_static=True) |
| 2480 | return |
| 2481 | |
| 2482 | def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls): |
| 2483 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor] |
| 2484 | cls.add_constructor([]) |
| 2485 | ## 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] |
| 2486 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')]) |
| 2487 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function] |
| 2488 | cls.add_method('Cleanup', |
| 2489 | 'void', |
| 2490 | [], |
| 2491 | is_static=True) |
| 2492 | return |
| 2493 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 2494 | def register_Ns3Simulator_methods(root_module, cls): |
| 2495 | ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor] |
| 2496 | cls.add_constructor([param('ns3::Simulator const &', 'arg0')]) |
| 2497 | ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function] |
| 2498 | cls.add_method('Cancel', |
| 2499 | 'void', |
| 2500 | [param('ns3::EventId const &', 'id')], |
| 2501 | is_static=True) |
| 2502 | ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function] |
| 2503 | cls.add_method('Destroy', |
| 2504 | 'void', |
| 2505 | [], |
| 2506 | is_static=True) |
| 2507 | ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function] |
| 2508 | cls.add_method('GetContext', |
| 2509 | 'uint32_t', |
| 2510 | [], |
| 2511 | is_static=True) |
| 2512 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function] |
| 2513 | cls.add_method('GetDelayLeft', |
| 2514 | 'ns3::Time', |
| 2515 | [param('ns3::EventId const &', 'id')], |
| 2516 | is_static=True) |
| 2517 | ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function] |
| 2518 | cls.add_method('GetImplementation', |
| 2519 | 'ns3::Ptr< ns3::SimulatorImpl >', |
| 2520 | [], |
| 2521 | is_static=True) |
| 2522 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function] |
| 2523 | cls.add_method('GetMaximumSimulationTime', |
| 2524 | 'ns3::Time', |
| 2525 | [], |
| 2526 | is_static=True) |
| 2527 | ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function] |
| 2528 | cls.add_method('GetSystemId', |
| 2529 | 'uint32_t', |
| 2530 | [], |
| 2531 | is_static=True) |
| 2532 | ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function] |
| 2533 | cls.add_method('IsExpired', |
| 2534 | 'bool', |
| 2535 | [param('ns3::EventId const &', 'id')], |
| 2536 | is_static=True) |
| 2537 | ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function] |
| 2538 | cls.add_method('IsFinished', |
| 2539 | 'bool', |
| 2540 | [], |
| 2541 | is_static=True) |
| 2542 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Next() [member function] |
| 2543 | cls.add_method('Next', |
| 2544 | 'ns3::Time', |
| 2545 | [], |
| 2546 | is_static=True, deprecated=True) |
| 2547 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function] |
| 2548 | cls.add_method('Now', |
| 2549 | 'ns3::Time', |
| 2550 | [], |
| 2551 | is_static=True) |
| 2552 | ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function] |
| 2553 | cls.add_method('Remove', |
| 2554 | 'void', |
| 2555 | [param('ns3::EventId const &', 'id')], |
| 2556 | is_static=True) |
| 2557 | ## simulator.h (module 'core'): static void ns3::Simulator::RunOneEvent() [member function] |
| 2558 | cls.add_method('RunOneEvent', |
| 2559 | 'void', |
| 2560 | [], |
| 2561 | is_static=True, deprecated=True) |
| 2562 | ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function] |
| 2563 | cls.add_method('SetImplementation', |
| 2564 | 'void', |
| 2565 | [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], |
| 2566 | is_static=True) |
| 2567 | ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function] |
| 2568 | cls.add_method('SetScheduler', |
| 2569 | 'void', |
| 2570 | [param('ns3::ObjectFactory', 'schedulerFactory')], |
| 2571 | is_static=True) |
| 2572 | ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function] |
| 2573 | cls.add_method('Stop', |
| 2574 | 'void', |
| 2575 | [], |
| 2576 | is_static=True) |
| 2577 | ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function] |
| 2578 | cls.add_method('Stop', |
| 2579 | 'void', |
| 2580 | [param('ns3::Time const &', 'time')], |
| 2581 | is_static=True) |
| 2582 | return |
| 2583 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 2584 | def register_Ns3SpringMobilityHelper_methods(root_module, cls): |
| 2585 | ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper() [constructor] |
| 2586 | cls.add_constructor([]) |
| 2587 | ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper(ns3::SpringMobilityHelper const & arg0) [copy constructor] |
| 2588 | cls.add_constructor([param('ns3::SpringMobilityHelper const &', 'arg0')]) |
| 2589 | ## spring-mobility-helper.h (module 'NDNabstraction'): static void ns3::SpringMobilityHelper::InstallSprings(ns3::Ptr<ns3::Node> node1, ns3::Ptr<ns3::Node> node2) [member function] |
| 2590 | cls.add_method('InstallSprings', |
| 2591 | 'void', |
| 2592 | [param('ns3::Ptr< ns3::Node >', 'node1'), param('ns3::Ptr< ns3::Node >', 'node2')], |
| 2593 | is_static=True) |
| 2594 | ## spring-mobility-helper.h (module 'NDNabstraction'): static void ns3::SpringMobilityHelper::InstallSprings(std::_List_const_iterator<ns3::TopologyReader::Link> first, std::_List_const_iterator<ns3::TopologyReader::Link> end) [member function] |
| 2595 | cls.add_method('InstallSprings', |
| 2596 | 'void', |
| 2597 | [param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'first'), param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'end')], |
| 2598 | is_static=True) |
| 2599 | return |
| 2600 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2601 | def register_Ns3TagBuffer_methods(root_module, cls): |
| 2602 | ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor] |
| 2603 | cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')]) |
| 2604 | ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor] |
| 2605 | cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')]) |
| 2606 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function] |
| 2607 | cls.add_method('CopyFrom', |
| 2608 | 'void', |
| 2609 | [param('ns3::TagBuffer', 'o')]) |
| 2610 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function] |
| 2611 | cls.add_method('Read', |
| 2612 | 'void', |
| 2613 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')]) |
| 2614 | ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function] |
| 2615 | cls.add_method('ReadDouble', |
| 2616 | 'double', |
| 2617 | []) |
| 2618 | ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function] |
| 2619 | cls.add_method('ReadU16', |
| 2620 | 'uint16_t', |
| 2621 | []) |
| 2622 | ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function] |
| 2623 | cls.add_method('ReadU32', |
| 2624 | 'uint32_t', |
| 2625 | []) |
| 2626 | ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function] |
| 2627 | cls.add_method('ReadU64', |
| 2628 | 'uint64_t', |
| 2629 | []) |
| 2630 | ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function] |
| 2631 | cls.add_method('ReadU8', |
| 2632 | 'uint8_t', |
| 2633 | []) |
| 2634 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function] |
| 2635 | cls.add_method('TrimAtEnd', |
| 2636 | 'void', |
| 2637 | [param('uint32_t', 'trim')]) |
| 2638 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function] |
| 2639 | cls.add_method('Write', |
| 2640 | 'void', |
| 2641 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 2642 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function] |
| 2643 | cls.add_method('WriteDouble', |
| 2644 | 'void', |
| 2645 | [param('double', 'v')]) |
| 2646 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function] |
| 2647 | cls.add_method('WriteU16', |
| 2648 | 'void', |
| 2649 | [param('uint16_t', 'data')]) |
| 2650 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function] |
| 2651 | cls.add_method('WriteU32', |
| 2652 | 'void', |
| 2653 | [param('uint32_t', 'data')]) |
| 2654 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function] |
| 2655 | cls.add_method('WriteU64', |
| 2656 | 'void', |
| 2657 | [param('uint64_t', 'v')]) |
| 2658 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function] |
| 2659 | cls.add_method('WriteU8', |
| 2660 | 'void', |
| 2661 | [param('uint8_t', 'v')]) |
| 2662 | return |
| 2663 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 2664 | def register_Ns3Timer_methods(root_module, cls): |
| 2665 | ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor] |
| 2666 | cls.add_constructor([param('ns3::Timer const &', 'arg0')]) |
| 2667 | ## timer.h (module 'core'): ns3::Timer::Timer() [constructor] |
| 2668 | cls.add_constructor([]) |
| 2669 | ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor] |
| 2670 | cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')]) |
| 2671 | ## timer.h (module 'core'): void ns3::Timer::Cancel() [member function] |
| 2672 | cls.add_method('Cancel', |
| 2673 | 'void', |
| 2674 | []) |
| 2675 | ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelay() const [member function] |
| 2676 | cls.add_method('GetDelay', |
| 2677 | 'ns3::Time', |
| 2678 | [], |
| 2679 | is_const=True) |
| 2680 | ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelayLeft() const [member function] |
| 2681 | cls.add_method('GetDelayLeft', |
| 2682 | 'ns3::Time', |
| 2683 | [], |
| 2684 | is_const=True) |
| 2685 | ## timer.h (module 'core'): ns3::Timer::State ns3::Timer::GetState() const [member function] |
| 2686 | cls.add_method('GetState', |
| 2687 | 'ns3::Timer::State', |
| 2688 | [], |
| 2689 | is_const=True) |
| 2690 | ## timer.h (module 'core'): bool ns3::Timer::IsExpired() const [member function] |
| 2691 | cls.add_method('IsExpired', |
| 2692 | 'bool', |
| 2693 | [], |
| 2694 | is_const=True) |
| 2695 | ## timer.h (module 'core'): bool ns3::Timer::IsRunning() const [member function] |
| 2696 | cls.add_method('IsRunning', |
| 2697 | 'bool', |
| 2698 | [], |
| 2699 | is_const=True) |
| 2700 | ## timer.h (module 'core'): bool ns3::Timer::IsSuspended() const [member function] |
| 2701 | cls.add_method('IsSuspended', |
| 2702 | 'bool', |
| 2703 | [], |
| 2704 | is_const=True) |
| 2705 | ## timer.h (module 'core'): void ns3::Timer::Remove() [member function] |
| 2706 | cls.add_method('Remove', |
| 2707 | 'void', |
| 2708 | []) |
| 2709 | ## timer.h (module 'core'): void ns3::Timer::Resume() [member function] |
| 2710 | cls.add_method('Resume', |
| 2711 | 'void', |
| 2712 | []) |
| 2713 | ## timer.h (module 'core'): void ns3::Timer::Schedule() [member function] |
| 2714 | cls.add_method('Schedule', |
| 2715 | 'void', |
| 2716 | []) |
| 2717 | ## timer.h (module 'core'): void ns3::Timer::Schedule(ns3::Time delay) [member function] |
| 2718 | cls.add_method('Schedule', |
| 2719 | 'void', |
| 2720 | [param('ns3::Time', 'delay')]) |
| 2721 | ## timer.h (module 'core'): void ns3::Timer::SetDelay(ns3::Time const & delay) [member function] |
| 2722 | cls.add_method('SetDelay', |
| 2723 | 'void', |
| 2724 | [param('ns3::Time const &', 'delay')]) |
| 2725 | ## timer.h (module 'core'): void ns3::Timer::Suspend() [member function] |
| 2726 | cls.add_method('Suspend', |
| 2727 | 'void', |
| 2728 | []) |
| 2729 | return |
| 2730 | |
| 2731 | def register_Ns3TimerImpl_methods(root_module, cls): |
| 2732 | ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl() [constructor] |
| 2733 | cls.add_constructor([]) |
| 2734 | ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor] |
| 2735 | cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')]) |
| 2736 | ## timer-impl.h (module 'core'): void ns3::TimerImpl::Invoke() [member function] |
| 2737 | cls.add_method('Invoke', |
| 2738 | 'void', |
| 2739 | [], |
| 2740 | is_pure_virtual=True, is_virtual=True) |
| 2741 | ## timer-impl.h (module 'core'): ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function] |
| 2742 | cls.add_method('Schedule', |
| 2743 | 'ns3::EventId', |
| 2744 | [param('ns3::Time const &', 'delay')], |
| 2745 | is_pure_virtual=True, is_virtual=True) |
| 2746 | return |
| 2747 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2748 | def register_Ns3TriangularVariable_methods(root_module, cls): |
| 2749 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor] |
| 2750 | cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')]) |
| 2751 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor] |
| 2752 | cls.add_constructor([]) |
| 2753 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor] |
| 2754 | cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')]) |
| 2755 | return |
| 2756 | |
| 2757 | def register_Ns3TypeId_methods(root_module, cls): |
| 2758 | cls.add_binary_comparison_operator('!=') |
| 2759 | cls.add_output_stream_operator() |
| 2760 | cls.add_binary_comparison_operator('==') |
| 2761 | cls.add_binary_comparison_operator('<') |
| 2762 | ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor] |
| 2763 | cls.add_constructor([param('char const *', 'name')]) |
| 2764 | ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor] |
| 2765 | cls.add_constructor([]) |
| 2766 | ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor] |
| 2767 | cls.add_constructor([param('ns3::TypeId const &', 'o')]) |
| 2768 | ## 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] |
| 2769 | cls.add_method('AddAttribute', |
| 2770 | 'ns3::TypeId', |
| 2771 | [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')]) |
| 2772 | ## 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] |
| 2773 | cls.add_method('AddAttribute', |
| 2774 | 'ns3::TypeId', |
| 2775 | [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')]) |
| 2776 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function] |
| 2777 | cls.add_method('AddTraceSource', |
| 2778 | 'ns3::TypeId', |
| 2779 | [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')]) |
| 2780 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function] |
| 2781 | cls.add_method('GetAttribute', |
| 2782 | 'ns3::TypeId::AttributeInformation', |
| 2783 | [param('uint32_t', 'i')], |
| 2784 | is_const=True) |
| 2785 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function] |
| 2786 | cls.add_method('GetAttributeFullName', |
| 2787 | 'std::string', |
| 2788 | [param('uint32_t', 'i')], |
| 2789 | is_const=True) |
| 2790 | ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function] |
| 2791 | cls.add_method('GetAttributeN', |
| 2792 | 'uint32_t', |
| 2793 | [], |
| 2794 | is_const=True) |
| 2795 | ## 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] |
| 2796 | cls.add_method('GetConstructor', |
| 2797 | 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
| 2798 | [], |
| 2799 | is_const=True) |
| 2800 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function] |
| 2801 | cls.add_method('GetGroupName', |
| 2802 | 'std::string', |
| 2803 | [], |
| 2804 | is_const=True) |
| 2805 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function] |
| 2806 | cls.add_method('GetName', |
| 2807 | 'std::string', |
| 2808 | [], |
| 2809 | is_const=True) |
| 2810 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function] |
| 2811 | cls.add_method('GetParent', |
| 2812 | 'ns3::TypeId', |
| 2813 | [], |
| 2814 | is_const=True) |
| 2815 | ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function] |
| 2816 | cls.add_method('GetRegistered', |
| 2817 | 'ns3::TypeId', |
| 2818 | [param('uint32_t', 'i')], |
| 2819 | is_static=True) |
| 2820 | ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function] |
| 2821 | cls.add_method('GetRegisteredN', |
| 2822 | 'uint32_t', |
| 2823 | [], |
| 2824 | is_static=True) |
| 2825 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function] |
| 2826 | cls.add_method('GetTraceSource', |
| 2827 | 'ns3::TypeId::TraceSourceInformation', |
| 2828 | [param('uint32_t', 'i')], |
| 2829 | is_const=True) |
| 2830 | ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function] |
| 2831 | cls.add_method('GetTraceSourceN', |
| 2832 | 'uint32_t', |
| 2833 | [], |
| 2834 | is_const=True) |
| 2835 | ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function] |
| 2836 | cls.add_method('GetUid', |
| 2837 | 'uint16_t', |
| 2838 | [], |
| 2839 | is_const=True) |
| 2840 | ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function] |
| 2841 | cls.add_method('HasConstructor', |
| 2842 | 'bool', |
| 2843 | [], |
| 2844 | is_const=True) |
| 2845 | ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function] |
| 2846 | cls.add_method('HasParent', |
| 2847 | 'bool', |
| 2848 | [], |
| 2849 | is_const=True) |
| 2850 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function] |
| 2851 | cls.add_method('HideFromDocumentation', |
| 2852 | 'ns3::TypeId', |
| 2853 | []) |
| 2854 | ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function] |
| 2855 | cls.add_method('IsChildOf', |
| 2856 | 'bool', |
| 2857 | [param('ns3::TypeId', 'other')], |
| 2858 | is_const=True) |
| 2859 | ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function] |
| 2860 | cls.add_method('LookupAttributeByName', |
| 2861 | 'bool', |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 2862 | [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 2863 | is_const=True) |
| 2864 | ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function] |
| 2865 | cls.add_method('LookupByName', |
| 2866 | 'ns3::TypeId', |
| 2867 | [param('std::string', 'name')], |
| 2868 | is_static=True) |
| 2869 | ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function] |
| 2870 | cls.add_method('LookupTraceSourceByName', |
| 2871 | 'ns3::Ptr< ns3::TraceSourceAccessor const >', |
| 2872 | [param('std::string', 'name')], |
| 2873 | is_const=True) |
| 2874 | ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function] |
| 2875 | cls.add_method('MustHideFromDocumentation', |
| 2876 | 'bool', |
| 2877 | [], |
| 2878 | is_const=True) |
| 2879 | ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function] |
| 2880 | cls.add_method('SetAttributeInitialValue', |
| 2881 | 'bool', |
| 2882 | [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')]) |
| 2883 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function] |
| 2884 | cls.add_method('SetGroupName', |
| 2885 | 'ns3::TypeId', |
| 2886 | [param('std::string', 'groupName')]) |
| 2887 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function] |
| 2888 | cls.add_method('SetParent', |
| 2889 | 'ns3::TypeId', |
| 2890 | [param('ns3::TypeId', 'tid')]) |
| 2891 | ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function] |
| 2892 | cls.add_method('SetUid', |
| 2893 | 'void', |
| 2894 | [param('uint16_t', 'tid')]) |
| 2895 | return |
| 2896 | |
| 2897 | def register_Ns3TypeIdAttributeInformation_methods(root_module, cls): |
| 2898 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor] |
| 2899 | cls.add_constructor([]) |
| 2900 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor] |
| 2901 | cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')]) |
| 2902 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable] |
| 2903 | cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False) |
| 2904 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable] |
| 2905 | cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
| 2906 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable] |
| 2907 | cls.add_instance_attribute('flags', 'uint32_t', is_const=False) |
| 2908 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable] |
| 2909 | cls.add_instance_attribute('help', 'std::string', is_const=False) |
| 2910 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable] |
| 2911 | cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
| 2912 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable] |
| 2913 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
| 2914 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable] |
| 2915 | cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
| 2916 | return |
| 2917 | |
| 2918 | def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls): |
| 2919 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor] |
| 2920 | cls.add_constructor([]) |
| 2921 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor] |
| 2922 | cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')]) |
| 2923 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable] |
| 2924 | cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False) |
| 2925 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable] |
| 2926 | cls.add_instance_attribute('help', 'std::string', is_const=False) |
| 2927 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable] |
| 2928 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
| 2929 | return |
| 2930 | |
| 2931 | def register_Ns3UniformVariable_methods(root_module, cls): |
| 2932 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor] |
| 2933 | cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')]) |
| 2934 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor] |
| 2935 | cls.add_constructor([]) |
| 2936 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor] |
| 2937 | cls.add_constructor([param('double', 's'), param('double', 'l')]) |
| 2938 | ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function] |
| 2939 | cls.add_method('GetInteger', |
| 2940 | 'uint32_t', |
| 2941 | [param('uint32_t', 's'), param('uint32_t', 'l')]) |
| 2942 | ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function] |
| 2943 | cls.add_method('GetValue', |
| 2944 | 'double', |
| 2945 | [], |
| 2946 | is_const=True) |
| 2947 | ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function] |
| 2948 | cls.add_method('GetValue', |
| 2949 | 'double', |
| 2950 | [param('double', 's'), param('double', 'l')]) |
| 2951 | return |
| 2952 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 2953 | def register_Ns3Vector2D_methods(root_module, cls): |
| 2954 | cls.add_output_stream_operator() |
| 2955 | cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right')) |
| 2956 | cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right')) |
| 2957 | cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right')) |
| 2958 | cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right')) |
| 2959 | cls.add_inplace_numeric_operator('+=', param('ns3::Vector2D const &', 'right')) |
| 2960 | cls.add_inplace_numeric_operator('+=', param('double', 'right')) |
| 2961 | cls.add_binary_numeric_operator('-', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right')) |
| 2962 | cls.add_binary_numeric_operator('/', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right')) |
| 2963 | ## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor] |
| 2964 | cls.add_constructor([param('ns3::Vector2D const &', 'arg0')]) |
| 2965 | ## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor] |
| 2966 | cls.add_constructor([param('double', '_x'), param('double', '_y')]) |
| 2967 | ## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor] |
| 2968 | cls.add_constructor([]) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 2969 | ## vector.h (module 'core'): double ns3::Vector2D::GetLength() const [member function] |
| 2970 | cls.add_method('GetLength', |
| 2971 | 'double', |
| 2972 | [], |
| 2973 | is_const=True) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 2974 | ## vector.h (module 'core'): ns3::Vector2D::x [variable] |
| 2975 | cls.add_instance_attribute('x', 'double', is_const=False) |
| 2976 | ## vector.h (module 'core'): ns3::Vector2D::y [variable] |
| 2977 | cls.add_instance_attribute('y', 'double', is_const=False) |
| 2978 | return |
| 2979 | |
| 2980 | def register_Ns3Vector3D_methods(root_module, cls): |
| 2981 | cls.add_output_stream_operator() |
| 2982 | cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right')) |
| 2983 | cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right')) |
| 2984 | cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right')) |
| 2985 | cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right')) |
| 2986 | cls.add_inplace_numeric_operator('+=', param('ns3::Vector3D const &', 'right')) |
| 2987 | cls.add_inplace_numeric_operator('+=', param('double', 'right')) |
| 2988 | cls.add_binary_numeric_operator('-', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right')) |
| 2989 | cls.add_binary_numeric_operator('/', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right')) |
| 2990 | ## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor] |
| 2991 | cls.add_constructor([param('ns3::Vector3D const &', 'arg0')]) |
| 2992 | ## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor] |
| 2993 | cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')]) |
| 2994 | ## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor] |
| 2995 | cls.add_constructor([]) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 2996 | ## vector.h (module 'core'): double ns3::Vector3D::GetLength() const [member function] |
| 2997 | cls.add_method('GetLength', |
| 2998 | 'double', |
| 2999 | [], |
| 3000 | is_const=True) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 3001 | ## vector.h (module 'core'): ns3::Vector3D::x [variable] |
| 3002 | cls.add_instance_attribute('x', 'double', is_const=False) |
| 3003 | ## vector.h (module 'core'): ns3::Vector3D::y [variable] |
| 3004 | cls.add_instance_attribute('y', 'double', is_const=False) |
| 3005 | ## vector.h (module 'core'): ns3::Vector3D::z [variable] |
| 3006 | cls.add_instance_attribute('z', 'double', is_const=False) |
| 3007 | return |
| 3008 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3009 | def register_Ns3WeibullVariable_methods(root_module, cls): |
| 3010 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor] |
| 3011 | cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')]) |
| 3012 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor] |
| 3013 | cls.add_constructor([]) |
| 3014 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor] |
| 3015 | cls.add_constructor([param('double', 'm')]) |
| 3016 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor] |
| 3017 | cls.add_constructor([param('double', 'm'), param('double', 's')]) |
| 3018 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor] |
| 3019 | cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')]) |
| 3020 | return |
| 3021 | |
| 3022 | def register_Ns3ZetaVariable_methods(root_module, cls): |
| 3023 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor] |
| 3024 | cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')]) |
| 3025 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor] |
| 3026 | cls.add_constructor([param('double', 'alpha')]) |
| 3027 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor] |
| 3028 | cls.add_constructor([]) |
| 3029 | return |
| 3030 | |
| 3031 | def register_Ns3ZipfVariable_methods(root_module, cls): |
| 3032 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor] |
| 3033 | cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')]) |
| 3034 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor] |
| 3035 | cls.add_constructor([param('long int', 'N'), param('double', 'alpha')]) |
| 3036 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor] |
| 3037 | cls.add_constructor([]) |
| 3038 | return |
| 3039 | |
| 3040 | def register_Ns3Empty_methods(root_module, cls): |
| 3041 | ## empty.h (module 'core'): ns3::empty::empty() [constructor] |
| 3042 | cls.add_constructor([]) |
| 3043 | ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor] |
| 3044 | cls.add_constructor([param('ns3::empty const &', 'arg0')]) |
| 3045 | return |
| 3046 | |
| 3047 | def register_Ns3Int64x64_t_methods(root_module, cls): |
| 3048 | cls.add_binary_comparison_operator('!=') |
| 3049 | cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right')) |
| 3050 | cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right')) |
| 3051 | cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right')) |
| 3052 | cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right')) |
| 3053 | cls.add_output_stream_operator() |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 3054 | cls.add_binary_comparison_operator('<=') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3055 | cls.add_binary_comparison_operator('==') |
| 3056 | cls.add_binary_comparison_operator('>=') |
| 3057 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3058 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3059 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3060 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3061 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3062 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3063 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3064 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3065 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3066 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3067 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3068 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3069 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3070 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3071 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3072 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3073 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3074 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3075 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3076 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3077 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3078 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3079 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3080 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3081 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3082 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3083 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3084 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3085 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3086 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3087 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3088 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3089 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3090 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3091 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3092 | cls.add_unary_numeric_operator('-') |
| 3093 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3094 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3095 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3096 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3097 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3098 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3099 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3100 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3101 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3102 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3103 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3104 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3105 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3106 | cls.add_binary_comparison_operator('<') |
| 3107 | cls.add_binary_comparison_operator('>') |
| 3108 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor] |
| 3109 | cls.add_constructor([]) |
| 3110 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor] |
| 3111 | cls.add_constructor([param('double', 'v')]) |
| 3112 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor] |
| 3113 | cls.add_constructor([param('int', 'v')]) |
| 3114 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor] |
| 3115 | cls.add_constructor([param('long int', 'v')]) |
| 3116 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor] |
| 3117 | cls.add_constructor([param('long long int', 'v')]) |
| 3118 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor] |
| 3119 | cls.add_constructor([param('unsigned int', 'v')]) |
| 3120 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor] |
| 3121 | cls.add_constructor([param('long unsigned int', 'v')]) |
| 3122 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor] |
| 3123 | cls.add_constructor([param('long long unsigned int', 'v')]) |
| 3124 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor] |
| 3125 | cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')]) |
| 3126 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor] |
| 3127 | cls.add_constructor([param('ns3::int64x64_t const &', 'o')]) |
| 3128 | ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function] |
| 3129 | cls.add_method('GetDouble', |
| 3130 | 'double', |
| 3131 | [], |
| 3132 | is_const=True) |
| 3133 | ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function] |
| 3134 | cls.add_method('GetHigh', |
| 3135 | 'int64_t', |
| 3136 | [], |
| 3137 | is_const=True) |
| 3138 | ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function] |
| 3139 | cls.add_method('GetLow', |
| 3140 | 'uint64_t', |
| 3141 | [], |
| 3142 | is_const=True) |
| 3143 | ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function] |
| 3144 | cls.add_method('Invert', |
| 3145 | 'ns3::int64x64_t', |
| 3146 | [param('uint64_t', 'v')], |
| 3147 | is_static=True) |
| 3148 | ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function] |
| 3149 | cls.add_method('MulByInvert', |
| 3150 | 'void', |
| 3151 | [param('ns3::int64x64_t const &', 'o')]) |
| 3152 | return |
| 3153 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3154 | def register_Ns3Chunk_methods(root_module, cls): |
| 3155 | ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor] |
| 3156 | cls.add_constructor([]) |
| 3157 | ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor] |
| 3158 | cls.add_constructor([param('ns3::Chunk const &', 'arg0')]) |
| 3159 | ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3160 | cls.add_method('Deserialize', |
| 3161 | 'uint32_t', |
| 3162 | [param('ns3::Buffer::Iterator', 'start')], |
| 3163 | is_pure_virtual=True, is_virtual=True) |
| 3164 | ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function] |
| 3165 | cls.add_method('GetTypeId', |
| 3166 | 'ns3::TypeId', |
| 3167 | [], |
| 3168 | is_static=True) |
| 3169 | ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function] |
| 3170 | cls.add_method('Print', |
| 3171 | 'void', |
| 3172 | [param('std::ostream &', 'os')], |
| 3173 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3174 | return |
| 3175 | |
| 3176 | def register_Ns3ConstantVariable_methods(root_module, cls): |
| 3177 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor] |
| 3178 | cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')]) |
| 3179 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor] |
| 3180 | cls.add_constructor([]) |
| 3181 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor] |
| 3182 | cls.add_constructor([param('double', 'c')]) |
| 3183 | ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function] |
| 3184 | cls.add_method('SetConstant', |
| 3185 | 'void', |
| 3186 | [param('double', 'c')]) |
| 3187 | return |
| 3188 | |
| 3189 | def register_Ns3DeterministicVariable_methods(root_module, cls): |
| 3190 | ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor] |
| 3191 | cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')]) |
| 3192 | ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor] |
| 3193 | cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')]) |
| 3194 | return |
| 3195 | |
| 3196 | def register_Ns3EmpiricalVariable_methods(root_module, cls): |
| 3197 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor] |
| 3198 | cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')]) |
| 3199 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor] |
| 3200 | cls.add_constructor([]) |
| 3201 | ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function] |
| 3202 | cls.add_method('CDF', |
| 3203 | 'void', |
| 3204 | [param('double', 'v'), param('double', 'c')]) |
| 3205 | return |
| 3206 | |
| 3207 | def register_Ns3ErlangVariable_methods(root_module, cls): |
| 3208 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor] |
| 3209 | cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')]) |
| 3210 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor] |
| 3211 | cls.add_constructor([]) |
| 3212 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor] |
| 3213 | cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')]) |
| 3214 | ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function] |
| 3215 | cls.add_method('GetValue', |
| 3216 | 'double', |
| 3217 | [], |
| 3218 | is_const=True) |
| 3219 | ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function] |
| 3220 | cls.add_method('GetValue', |
| 3221 | 'double', |
| 3222 | [param('unsigned int', 'k'), param('double', 'lambda')], |
| 3223 | is_const=True) |
| 3224 | return |
| 3225 | |
| 3226 | def register_Ns3ExponentialVariable_methods(root_module, cls): |
| 3227 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor] |
| 3228 | cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')]) |
| 3229 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor] |
| 3230 | cls.add_constructor([]) |
| 3231 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor] |
| 3232 | cls.add_constructor([param('double', 'm')]) |
| 3233 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor] |
| 3234 | cls.add_constructor([param('double', 'm'), param('double', 'b')]) |
| 3235 | return |
| 3236 | |
| 3237 | def register_Ns3GammaVariable_methods(root_module, cls): |
| 3238 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor] |
| 3239 | cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')]) |
| 3240 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor] |
| 3241 | cls.add_constructor([]) |
| 3242 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor] |
| 3243 | cls.add_constructor([param('double', 'alpha'), param('double', 'beta')]) |
| 3244 | ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function] |
| 3245 | cls.add_method('GetValue', |
| 3246 | 'double', |
| 3247 | [], |
| 3248 | is_const=True) |
| 3249 | ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function] |
| 3250 | cls.add_method('GetValue', |
| 3251 | 'double', |
| 3252 | [param('double', 'alpha'), param('double', 'beta')], |
| 3253 | is_const=True) |
| 3254 | return |
| 3255 | |
| 3256 | def register_Ns3Header_methods(root_module, cls): |
| 3257 | cls.add_output_stream_operator() |
| 3258 | ## header.h (module 'network'): ns3::Header::Header() [constructor] |
| 3259 | cls.add_constructor([]) |
| 3260 | ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor] |
| 3261 | cls.add_constructor([param('ns3::Header const &', 'arg0')]) |
| 3262 | ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3263 | cls.add_method('Deserialize', |
| 3264 | 'uint32_t', |
| 3265 | [param('ns3::Buffer::Iterator', 'start')], |
| 3266 | is_pure_virtual=True, is_virtual=True) |
| 3267 | ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function] |
| 3268 | cls.add_method('GetSerializedSize', |
| 3269 | 'uint32_t', |
| 3270 | [], |
| 3271 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3272 | ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function] |
| 3273 | cls.add_method('GetTypeId', |
| 3274 | 'ns3::TypeId', |
| 3275 | [], |
| 3276 | is_static=True) |
| 3277 | ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function] |
| 3278 | cls.add_method('Print', |
| 3279 | 'void', |
| 3280 | [param('std::ostream &', 'os')], |
| 3281 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3282 | ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 3283 | cls.add_method('Serialize', |
| 3284 | 'void', |
| 3285 | [param('ns3::Buffer::Iterator', 'start')], |
| 3286 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3287 | return |
| 3288 | |
| 3289 | def register_Ns3IntEmpiricalVariable_methods(root_module, cls): |
| 3290 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor] |
| 3291 | cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')]) |
| 3292 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor] |
| 3293 | cls.add_constructor([]) |
| 3294 | return |
| 3295 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3296 | def register_Ns3Ipv4Header_methods(root_module, cls): |
| 3297 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header(ns3::Ipv4Header const & arg0) [copy constructor] |
| 3298 | cls.add_constructor([param('ns3::Ipv4Header const &', 'arg0')]) |
| 3299 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header() [constructor] |
| 3300 | cls.add_constructor([]) |
| 3301 | ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3302 | cls.add_method('Deserialize', |
| 3303 | 'uint32_t', |
| 3304 | [param('ns3::Buffer::Iterator', 'start')], |
| 3305 | is_virtual=True) |
| 3306 | ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::DscpTypeToString(ns3::Ipv4Header::DscpType dscp) const [member function] |
| 3307 | cls.add_method('DscpTypeToString', |
| 3308 | 'std::string', |
| 3309 | [param('ns3::Ipv4Header::DscpType', 'dscp')], |
| 3310 | is_const=True) |
| 3311 | ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::EcnTypeToString(ns3::Ipv4Header::EcnType ecn) const [member function] |
| 3312 | cls.add_method('EcnTypeToString', |
| 3313 | 'std::string', |
| 3314 | [param('ns3::Ipv4Header::EcnType', 'ecn')], |
| 3315 | is_const=True) |
| 3316 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::EnableChecksum() [member function] |
| 3317 | cls.add_method('EnableChecksum', |
| 3318 | 'void', |
| 3319 | []) |
| 3320 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetDestination() const [member function] |
| 3321 | cls.add_method('GetDestination', |
| 3322 | 'ns3::Ipv4Address', |
| 3323 | [], |
| 3324 | is_const=True) |
| 3325 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType ns3::Ipv4Header::GetDscp() const [member function] |
| 3326 | cls.add_method('GetDscp', |
| 3327 | 'ns3::Ipv4Header::DscpType', |
| 3328 | [], |
| 3329 | is_const=True) |
| 3330 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType ns3::Ipv4Header::GetEcn() const [member function] |
| 3331 | cls.add_method('GetEcn', |
| 3332 | 'ns3::Ipv4Header::EcnType', |
| 3333 | [], |
| 3334 | is_const=True) |
| 3335 | ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetFragmentOffset() const [member function] |
| 3336 | cls.add_method('GetFragmentOffset', |
| 3337 | 'uint16_t', |
| 3338 | [], |
| 3339 | is_const=True) |
| 3340 | ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetIdentification() const [member function] |
| 3341 | cls.add_method('GetIdentification', |
| 3342 | 'uint16_t', |
| 3343 | [], |
| 3344 | is_const=True) |
| 3345 | ## ipv4-header.h (module 'internet'): ns3::TypeId ns3::Ipv4Header::GetInstanceTypeId() const [member function] |
| 3346 | cls.add_method('GetInstanceTypeId', |
| 3347 | 'ns3::TypeId', |
| 3348 | [], |
| 3349 | is_const=True, is_virtual=True) |
| 3350 | ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetPayloadSize() const [member function] |
| 3351 | cls.add_method('GetPayloadSize', |
| 3352 | 'uint16_t', |
| 3353 | [], |
| 3354 | is_const=True) |
| 3355 | ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetProtocol() const [member function] |
| 3356 | cls.add_method('GetProtocol', |
| 3357 | 'uint8_t', |
| 3358 | [], |
| 3359 | is_const=True) |
| 3360 | ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::GetSerializedSize() const [member function] |
| 3361 | cls.add_method('GetSerializedSize', |
| 3362 | 'uint32_t', |
| 3363 | [], |
| 3364 | is_const=True, is_virtual=True) |
| 3365 | ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetSource() const [member function] |
| 3366 | cls.add_method('GetSource', |
| 3367 | 'ns3::Ipv4Address', |
| 3368 | [], |
| 3369 | is_const=True) |
| 3370 | ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTos() const [member function] |
| 3371 | cls.add_method('GetTos', |
| 3372 | 'uint8_t', |
| 3373 | [], |
| 3374 | is_const=True) |
| 3375 | ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTtl() const [member function] |
| 3376 | cls.add_method('GetTtl', |
| 3377 | 'uint8_t', |
| 3378 | [], |
| 3379 | is_const=True) |
| 3380 | ## ipv4-header.h (module 'internet'): static ns3::TypeId ns3::Ipv4Header::GetTypeId() [member function] |
| 3381 | cls.add_method('GetTypeId', |
| 3382 | 'ns3::TypeId', |
| 3383 | [], |
| 3384 | is_static=True) |
| 3385 | ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsChecksumOk() const [member function] |
| 3386 | cls.add_method('IsChecksumOk', |
| 3387 | 'bool', |
| 3388 | [], |
| 3389 | is_const=True) |
| 3390 | ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsDontFragment() const [member function] |
| 3391 | cls.add_method('IsDontFragment', |
| 3392 | 'bool', |
| 3393 | [], |
| 3394 | is_const=True) |
| 3395 | ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsLastFragment() const [member function] |
| 3396 | cls.add_method('IsLastFragment', |
| 3397 | 'bool', |
| 3398 | [], |
| 3399 | is_const=True) |
| 3400 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Print(std::ostream & os) const [member function] |
| 3401 | cls.add_method('Print', |
| 3402 | 'void', |
| 3403 | [param('std::ostream &', 'os')], |
| 3404 | is_const=True, is_virtual=True) |
| 3405 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 3406 | cls.add_method('Serialize', |
| 3407 | 'void', |
| 3408 | [param('ns3::Buffer::Iterator', 'start')], |
| 3409 | is_const=True, is_virtual=True) |
| 3410 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDestination(ns3::Ipv4Address destination) [member function] |
| 3411 | cls.add_method('SetDestination', |
| 3412 | 'void', |
| 3413 | [param('ns3::Ipv4Address', 'destination')]) |
| 3414 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDontFragment() [member function] |
| 3415 | cls.add_method('SetDontFragment', |
| 3416 | 'void', |
| 3417 | []) |
| 3418 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDscp(ns3::Ipv4Header::DscpType dscp) [member function] |
| 3419 | cls.add_method('SetDscp', |
| 3420 | 'void', |
| 3421 | [param('ns3::Ipv4Header::DscpType', 'dscp')]) |
| 3422 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetEcn(ns3::Ipv4Header::EcnType ecn) [member function] |
| 3423 | cls.add_method('SetEcn', |
| 3424 | 'void', |
| 3425 | [param('ns3::Ipv4Header::EcnType', 'ecn')]) |
| 3426 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetFragmentOffset(uint16_t offsetBytes) [member function] |
| 3427 | cls.add_method('SetFragmentOffset', |
| 3428 | 'void', |
| 3429 | [param('uint16_t', 'offsetBytes')]) |
| 3430 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetIdentification(uint16_t identification) [member function] |
| 3431 | cls.add_method('SetIdentification', |
| 3432 | 'void', |
| 3433 | [param('uint16_t', 'identification')]) |
| 3434 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetLastFragment() [member function] |
| 3435 | cls.add_method('SetLastFragment', |
| 3436 | 'void', |
| 3437 | []) |
| 3438 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMayFragment() [member function] |
| 3439 | cls.add_method('SetMayFragment', |
| 3440 | 'void', |
| 3441 | []) |
| 3442 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMoreFragments() [member function] |
| 3443 | cls.add_method('SetMoreFragments', |
| 3444 | 'void', |
| 3445 | []) |
| 3446 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetPayloadSize(uint16_t size) [member function] |
| 3447 | cls.add_method('SetPayloadSize', |
| 3448 | 'void', |
| 3449 | [param('uint16_t', 'size')]) |
| 3450 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetProtocol(uint8_t num) [member function] |
| 3451 | cls.add_method('SetProtocol', |
| 3452 | 'void', |
| 3453 | [param('uint8_t', 'num')]) |
| 3454 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetSource(ns3::Ipv4Address source) [member function] |
| 3455 | cls.add_method('SetSource', |
| 3456 | 'void', |
| 3457 | [param('ns3::Ipv4Address', 'source')]) |
| 3458 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTos(uint8_t tos) [member function] |
| 3459 | cls.add_method('SetTos', |
| 3460 | 'void', |
| 3461 | [param('uint8_t', 'tos')]) |
| 3462 | ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTtl(uint8_t ttl) [member function] |
| 3463 | cls.add_method('SetTtl', |
| 3464 | 'void', |
| 3465 | [param('uint8_t', 'ttl')]) |
| 3466 | return |
| 3467 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 3468 | def register_Ns3Ipv6Header_methods(root_module, cls): |
| 3469 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header(ns3::Ipv6Header const & arg0) [copy constructor] |
| 3470 | cls.add_constructor([param('ns3::Ipv6Header const &', 'arg0')]) |
| 3471 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header() [constructor] |
| 3472 | cls.add_constructor([]) |
| 3473 | ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3474 | cls.add_method('Deserialize', |
| 3475 | 'uint32_t', |
| 3476 | [param('ns3::Buffer::Iterator', 'start')], |
| 3477 | is_virtual=True) |
| 3478 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetDestinationAddress() const [member function] |
| 3479 | cls.add_method('GetDestinationAddress', |
| 3480 | 'ns3::Ipv6Address', |
| 3481 | [], |
| 3482 | is_const=True) |
| 3483 | ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetFlowLabel() const [member function] |
| 3484 | cls.add_method('GetFlowLabel', |
| 3485 | 'uint32_t', |
| 3486 | [], |
| 3487 | is_const=True) |
| 3488 | ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetHopLimit() const [member function] |
| 3489 | cls.add_method('GetHopLimit', |
| 3490 | 'uint8_t', |
| 3491 | [], |
| 3492 | is_const=True) |
| 3493 | ## ipv6-header.h (module 'internet'): ns3::TypeId ns3::Ipv6Header::GetInstanceTypeId() const [member function] |
| 3494 | cls.add_method('GetInstanceTypeId', |
| 3495 | 'ns3::TypeId', |
| 3496 | [], |
| 3497 | is_const=True, is_virtual=True) |
| 3498 | ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetNextHeader() const [member function] |
| 3499 | cls.add_method('GetNextHeader', |
| 3500 | 'uint8_t', |
| 3501 | [], |
| 3502 | is_const=True) |
| 3503 | ## ipv6-header.h (module 'internet'): uint16_t ns3::Ipv6Header::GetPayloadLength() const [member function] |
| 3504 | cls.add_method('GetPayloadLength', |
| 3505 | 'uint16_t', |
| 3506 | [], |
| 3507 | is_const=True) |
| 3508 | ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetSerializedSize() const [member function] |
| 3509 | cls.add_method('GetSerializedSize', |
| 3510 | 'uint32_t', |
| 3511 | [], |
| 3512 | is_const=True, is_virtual=True) |
| 3513 | ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetSourceAddress() const [member function] |
| 3514 | cls.add_method('GetSourceAddress', |
| 3515 | 'ns3::Ipv6Address', |
| 3516 | [], |
| 3517 | is_const=True) |
| 3518 | ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetTrafficClass() const [member function] |
| 3519 | cls.add_method('GetTrafficClass', |
| 3520 | 'uint8_t', |
| 3521 | [], |
| 3522 | is_const=True) |
| 3523 | ## ipv6-header.h (module 'internet'): static ns3::TypeId ns3::Ipv6Header::GetTypeId() [member function] |
| 3524 | cls.add_method('GetTypeId', |
| 3525 | 'ns3::TypeId', |
| 3526 | [], |
| 3527 | is_static=True) |
| 3528 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Print(std::ostream & os) const [member function] |
| 3529 | cls.add_method('Print', |
| 3530 | 'void', |
| 3531 | [param('std::ostream &', 'os')], |
| 3532 | is_const=True, is_virtual=True) |
| 3533 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 3534 | cls.add_method('Serialize', |
| 3535 | 'void', |
| 3536 | [param('ns3::Buffer::Iterator', 'start')], |
| 3537 | is_const=True, is_virtual=True) |
| 3538 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetDestinationAddress(ns3::Ipv6Address dst) [member function] |
| 3539 | cls.add_method('SetDestinationAddress', |
| 3540 | 'void', |
| 3541 | [param('ns3::Ipv6Address', 'dst')]) |
| 3542 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetFlowLabel(uint32_t flow) [member function] |
| 3543 | cls.add_method('SetFlowLabel', |
| 3544 | 'void', |
| 3545 | [param('uint32_t', 'flow')]) |
| 3546 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetHopLimit(uint8_t limit) [member function] |
| 3547 | cls.add_method('SetHopLimit', |
| 3548 | 'void', |
| 3549 | [param('uint8_t', 'limit')]) |
| 3550 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetNextHeader(uint8_t next) [member function] |
| 3551 | cls.add_method('SetNextHeader', |
| 3552 | 'void', |
| 3553 | [param('uint8_t', 'next')]) |
| 3554 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetPayloadLength(uint16_t len) [member function] |
| 3555 | cls.add_method('SetPayloadLength', |
| 3556 | 'void', |
| 3557 | [param('uint16_t', 'len')]) |
| 3558 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetSourceAddress(ns3::Ipv6Address src) [member function] |
| 3559 | cls.add_method('SetSourceAddress', |
| 3560 | 'void', |
| 3561 | [param('ns3::Ipv6Address', 'src')]) |
| 3562 | ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetTrafficClass(uint8_t traffic) [member function] |
| 3563 | cls.add_method('SetTrafficClass', |
| 3564 | 'void', |
| 3565 | [param('uint8_t', 'traffic')]) |
| 3566 | return |
| 3567 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3568 | def register_Ns3LogNormalVariable_methods(root_module, cls): |
| 3569 | ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor] |
| 3570 | cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')]) |
| 3571 | ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor] |
| 3572 | cls.add_constructor([param('double', 'mu'), param('double', 'sigma')]) |
| 3573 | return |
| 3574 | |
| 3575 | def register_Ns3NormalVariable_methods(root_module, cls): |
| 3576 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor] |
| 3577 | cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')]) |
| 3578 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor] |
| 3579 | cls.add_constructor([]) |
| 3580 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor] |
| 3581 | cls.add_constructor([param('double', 'm'), param('double', 'v')]) |
| 3582 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor] |
| 3583 | cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')]) |
| 3584 | return |
| 3585 | |
| 3586 | def register_Ns3Object_methods(root_module, cls): |
| 3587 | ## object.h (module 'core'): ns3::Object::Object() [constructor] |
| 3588 | cls.add_constructor([]) |
| 3589 | ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function] |
| 3590 | cls.add_method('AggregateObject', |
| 3591 | 'void', |
| 3592 | [param('ns3::Ptr< ns3::Object >', 'other')]) |
| 3593 | ## object.h (module 'core'): void ns3::Object::Dispose() [member function] |
| 3594 | cls.add_method('Dispose', |
| 3595 | 'void', |
| 3596 | []) |
| 3597 | ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function] |
| 3598 | cls.add_method('GetAggregateIterator', |
| 3599 | 'ns3::Object::AggregateIterator', |
| 3600 | [], |
| 3601 | is_const=True) |
| 3602 | ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function] |
| 3603 | cls.add_method('GetInstanceTypeId', |
| 3604 | 'ns3::TypeId', |
| 3605 | [], |
| 3606 | is_const=True, is_virtual=True) |
| 3607 | ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function] |
| 3608 | cls.add_method('GetTypeId', |
| 3609 | 'ns3::TypeId', |
| 3610 | [], |
| 3611 | is_static=True) |
| 3612 | ## object.h (module 'core'): void ns3::Object::Start() [member function] |
| 3613 | cls.add_method('Start', |
| 3614 | 'void', |
| 3615 | []) |
| 3616 | ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor] |
| 3617 | cls.add_constructor([param('ns3::Object const &', 'o')], |
| 3618 | visibility='protected') |
| 3619 | ## object.h (module 'core'): void ns3::Object::DoDispose() [member function] |
| 3620 | cls.add_method('DoDispose', |
| 3621 | 'void', |
| 3622 | [], |
| 3623 | visibility='protected', is_virtual=True) |
| 3624 | ## object.h (module 'core'): void ns3::Object::DoStart() [member function] |
| 3625 | cls.add_method('DoStart', |
| 3626 | 'void', |
| 3627 | [], |
| 3628 | visibility='protected', is_virtual=True) |
| 3629 | ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function] |
| 3630 | cls.add_method('NotifyNewAggregate', |
| 3631 | 'void', |
| 3632 | [], |
| 3633 | visibility='protected', is_virtual=True) |
| 3634 | return |
| 3635 | |
| 3636 | def register_Ns3ObjectAggregateIterator_methods(root_module, cls): |
| 3637 | ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor] |
| 3638 | cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')]) |
| 3639 | ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor] |
| 3640 | cls.add_constructor([]) |
| 3641 | ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function] |
| 3642 | cls.add_method('HasNext', |
| 3643 | 'bool', |
| 3644 | [], |
| 3645 | is_const=True) |
| 3646 | ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function] |
| 3647 | cls.add_method('Next', |
| 3648 | 'ns3::Ptr< ns3::Object const >', |
| 3649 | []) |
| 3650 | return |
| 3651 | |
| 3652 | def register_Ns3ParetoVariable_methods(root_module, cls): |
| 3653 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor] |
| 3654 | cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')]) |
| 3655 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor] |
| 3656 | cls.add_constructor([]) |
| 3657 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor] |
| 3658 | cls.add_constructor([param('double', 'm')]) |
| 3659 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor] |
| 3660 | cls.add_constructor([param('double', 'm'), param('double', 's')]) |
| 3661 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor] |
| 3662 | cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')]) |
| 3663 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor] |
| 3664 | cls.add_constructor([param('std::pair< double, double >', 'params')]) |
| 3665 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor] |
| 3666 | cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')]) |
| 3667 | return |
| 3668 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3669 | def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls): |
| 3670 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor] |
| 3671 | cls.add_constructor([]) |
| 3672 | ## 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] |
| 3673 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')]) |
| 3674 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function] |
| 3675 | cls.add_method('Cleanup', |
| 3676 | 'void', |
| 3677 | [], |
| 3678 | is_static=True) |
| 3679 | return |
| 3680 | |
| 3681 | def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls): |
| 3682 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor] |
| 3683 | cls.add_constructor([]) |
| 3684 | ## 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] |
| 3685 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')]) |
| 3686 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function] |
| 3687 | cls.add_method('Cleanup', |
| 3688 | 'void', |
| 3689 | [], |
| 3690 | is_static=True) |
| 3691 | return |
| 3692 | |
| 3693 | def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls): |
| 3694 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor] |
| 3695 | cls.add_constructor([]) |
| 3696 | ## 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] |
| 3697 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')]) |
| 3698 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function] |
| 3699 | cls.add_method('Cleanup', |
| 3700 | 'void', |
| 3701 | [], |
| 3702 | is_static=True) |
| 3703 | return |
| 3704 | |
| 3705 | def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls): |
| 3706 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor] |
| 3707 | cls.add_constructor([]) |
| 3708 | ## 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] |
| 3709 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')]) |
| 3710 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function] |
| 3711 | cls.add_method('Cleanup', |
| 3712 | 'void', |
| 3713 | [], |
| 3714 | is_static=True) |
| 3715 | return |
| 3716 | |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 3717 | def register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, cls): |
| 3718 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::SimpleRefCount() [constructor] |
| 3719 | cls.add_constructor([]) |
| 3720 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> > const & o) [copy constructor] |
| 3721 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxAppTracer > > const &', 'o')]) |
| 3722 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::Cleanup() [member function] |
| 3723 | cls.add_method('Cleanup', |
| 3724 | 'void', |
| 3725 | [], |
| 3726 | is_static=True) |
| 3727 | return |
| 3728 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3729 | def register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, cls): |
| 3730 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount() [constructor] |
| 3731 | cls.add_constructor([]) |
| 3732 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > const & o) [copy constructor] |
| 3733 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFaceContainer > > const &', 'o')]) |
| 3734 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::Cleanup() [member function] |
| 3735 | cls.add_method('Cleanup', |
| 3736 | 'void', |
| 3737 | [], |
| 3738 | is_static=True) |
| 3739 | return |
| 3740 | |
| 3741 | def register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, cls): |
| 3742 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::SimpleRefCount() [constructor] |
| 3743 | cls.add_constructor([]) |
| 3744 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> > const & o) [copy constructor] |
| 3745 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFibEntry > > const &', 'o')]) |
| 3746 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::Cleanup() [member function] |
| 3747 | cls.add_method('Cleanup', |
| 3748 | 'void', |
| 3749 | [], |
| 3750 | is_static=True) |
| 3751 | return |
| 3752 | |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 3753 | def register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, cls): |
| 3754 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::SimpleRefCount() [constructor] |
| 3755 | cls.add_constructor([]) |
| 3756 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> > const & o) [copy constructor] |
| 3757 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxL3Tracer > > const &', 'o')]) |
| 3758 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::Cleanup() [member function] |
| 3759 | cls.add_method('Cleanup', |
| 3760 | 'void', |
| 3761 | [], |
| 3762 | is_static=True) |
| 3763 | return |
| 3764 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3765 | def register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, cls): |
| 3766 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount() [constructor] |
| 3767 | cls.add_constructor([]) |
| 3768 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > const & o) [copy constructor] |
| 3769 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter< ns3::CcnxNameComponents > > const &', 'o')]) |
| 3770 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::Cleanup() [member function] |
| 3771 | cls.add_method('Cleanup', |
| 3772 | 'void', |
| 3773 | [], |
| 3774 | is_static=True) |
| 3775 | return |
| 3776 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3777 | def register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, cls): |
| 3778 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::SimpleRefCount() [constructor] |
| 3779 | cls.add_constructor([]) |
| 3780 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> > const & o) [copy constructor] |
| 3781 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxPathWeightTracer > > const &', 'o')]) |
| 3782 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::Cleanup() [member function] |
| 3783 | cls.add_method('Cleanup', |
| 3784 | 'void', |
| 3785 | [], |
| 3786 | is_static=True) |
| 3787 | return |
| 3788 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3789 | def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls): |
| 3790 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor] |
| 3791 | cls.add_constructor([]) |
| 3792 | ## 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] |
| 3793 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')]) |
| 3794 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function] |
| 3795 | cls.add_method('Cleanup', |
| 3796 | 'void', |
| 3797 | [], |
| 3798 | is_static=True) |
| 3799 | return |
| 3800 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3801 | def register_Ns3SimpleRefCount__Ns3Ipv4AppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4AppTracer__gt___methods(root_module, cls): |
| 3802 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::SimpleRefCount() [constructor] |
| 3803 | cls.add_constructor([]) |
| 3804 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> > const & o) [copy constructor] |
| 3805 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4AppTracer > > const &', 'o')]) |
| 3806 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::Cleanup() [member function] |
| 3807 | cls.add_method('Cleanup', |
| 3808 | 'void', |
| 3809 | [], |
| 3810 | is_static=True) |
| 3811 | return |
| 3812 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 3813 | def register_Ns3SimpleRefCount__Ns3Ipv4L3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4L3Tracer__gt___methods(root_module, cls): |
| 3814 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::SimpleRefCount() [constructor] |
| 3815 | cls.add_constructor([]) |
| 3816 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> > const & o) [copy constructor] |
| 3817 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4L3Tracer > > const &', 'o')]) |
| 3818 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::Cleanup() [member function] |
| 3819 | cls.add_method('Cleanup', |
| 3820 | 'void', |
| 3821 | [], |
| 3822 | is_static=True) |
| 3823 | return |
| 3824 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3825 | def register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, cls): |
| 3826 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount() [constructor] |
| 3827 | cls.add_constructor([]) |
| 3828 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > const & o) [copy constructor] |
| 3829 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4MulticastRoute > > const &', 'o')]) |
| 3830 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::Cleanup() [member function] |
| 3831 | cls.add_method('Cleanup', |
| 3832 | 'void', |
| 3833 | [], |
| 3834 | is_static=True) |
| 3835 | return |
| 3836 | |
| 3837 | def register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, cls): |
| 3838 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount() [constructor] |
| 3839 | cls.add_constructor([]) |
| 3840 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > const & o) [copy constructor] |
| 3841 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4Route > > const &', 'o')]) |
| 3842 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::Cleanup() [member function] |
| 3843 | cls.add_method('Cleanup', |
| 3844 | 'void', |
| 3845 | [], |
| 3846 | is_static=True) |
| 3847 | return |
| 3848 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3849 | def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls): |
| 3850 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor] |
| 3851 | cls.add_constructor([]) |
| 3852 | ## 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] |
| 3853 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')]) |
| 3854 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function] |
| 3855 | cls.add_method('Cleanup', |
| 3856 | 'void', |
| 3857 | [], |
| 3858 | is_static=True) |
| 3859 | return |
| 3860 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 3861 | def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls): |
| 3862 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor] |
| 3863 | cls.add_constructor([]) |
| 3864 | ## 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] |
| 3865 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')]) |
| 3866 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function] |
| 3867 | cls.add_method('Cleanup', |
| 3868 | 'void', |
| 3869 | [], |
| 3870 | is_static=True) |
| 3871 | return |
| 3872 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3873 | def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls): |
| 3874 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor] |
| 3875 | cls.add_constructor([]) |
| 3876 | ## 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] |
| 3877 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')]) |
| 3878 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function] |
| 3879 | cls.add_method('Cleanup', |
| 3880 | 'void', |
| 3881 | [], |
| 3882 | is_static=True) |
| 3883 | return |
| 3884 | |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 3885 | def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls): |
| 3886 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor] |
| 3887 | cls.add_constructor([]) |
| 3888 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > const & o) [copy constructor] |
| 3889 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')]) |
| 3890 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function] |
| 3891 | cls.add_method('Cleanup', |
| 3892 | 'void', |
| 3893 | [], |
| 3894 | is_static=True) |
| 3895 | return |
| 3896 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 3897 | def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls): |
| 3898 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor] |
| 3899 | cls.add_constructor([]) |
| 3900 | ## 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] |
| 3901 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')]) |
| 3902 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function] |
| 3903 | cls.add_method('Cleanup', |
| 3904 | 'void', |
| 3905 | [], |
| 3906 | is_static=True) |
| 3907 | return |
| 3908 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3909 | def register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, cls): |
| 3910 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::SimpleRefCount() [constructor] |
| 3911 | cls.add_constructor([]) |
| 3912 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> > const & o) [copy constructor] |
| 3913 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter< ns3::WindowTracer > > const &', 'o')]) |
| 3914 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::Cleanup() [member function] |
| 3915 | cls.add_method('Cleanup', |
| 3916 | 'void', |
| 3917 | [], |
| 3918 | is_static=True) |
| 3919 | return |
| 3920 | |
| 3921 | def register_Ns3Socket_methods(root_module, cls): |
| 3922 | ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor] |
| 3923 | cls.add_constructor([param('ns3::Socket const &', 'arg0')]) |
| 3924 | ## socket.h (module 'network'): ns3::Socket::Socket() [constructor] |
| 3925 | cls.add_constructor([]) |
| 3926 | ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function] |
| 3927 | cls.add_method('Bind', |
| 3928 | 'int', |
| 3929 | [param('ns3::Address const &', 'address')], |
| 3930 | is_pure_virtual=True, is_virtual=True) |
| 3931 | ## socket.h (module 'network'): int ns3::Socket::Bind() [member function] |
| 3932 | cls.add_method('Bind', |
| 3933 | 'int', |
| 3934 | [], |
| 3935 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 3936 | ## socket.h (module 'network'): int ns3::Socket::Bind6() [member function] |
| 3937 | cls.add_method('Bind6', |
| 3938 | 'int', |
| 3939 | [], |
| 3940 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 3941 | ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function] |
| 3942 | cls.add_method('BindToNetDevice', |
| 3943 | 'void', |
| 3944 | [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], |
| 3945 | is_virtual=True) |
| 3946 | ## socket.h (module 'network'): int ns3::Socket::Close() [member function] |
| 3947 | cls.add_method('Close', |
| 3948 | 'int', |
| 3949 | [], |
| 3950 | is_pure_virtual=True, is_virtual=True) |
| 3951 | ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function] |
| 3952 | cls.add_method('Connect', |
| 3953 | 'int', |
| 3954 | [param('ns3::Address const &', 'address')], |
| 3955 | is_pure_virtual=True, is_virtual=True) |
| 3956 | ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function] |
| 3957 | cls.add_method('CreateSocket', |
| 3958 | 'ns3::Ptr< ns3::Socket >', |
| 3959 | [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')], |
| 3960 | is_static=True) |
| 3961 | ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function] |
| 3962 | cls.add_method('GetAllowBroadcast', |
| 3963 | 'bool', |
| 3964 | [], |
| 3965 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3966 | ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function] |
| 3967 | cls.add_method('GetBoundNetDevice', |
| 3968 | 'ns3::Ptr< ns3::NetDevice >', |
| 3969 | []) |
| 3970 | ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function] |
| 3971 | cls.add_method('GetErrno', |
| 3972 | 'ns3::Socket::SocketErrno', |
| 3973 | [], |
| 3974 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3975 | ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function] |
| 3976 | cls.add_method('GetNode', |
| 3977 | 'ns3::Ptr< ns3::Node >', |
| 3978 | [], |
| 3979 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3980 | ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function] |
| 3981 | cls.add_method('GetRxAvailable', |
| 3982 | 'uint32_t', |
| 3983 | [], |
| 3984 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3985 | ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function] |
| 3986 | cls.add_method('GetSockName', |
| 3987 | 'int', |
| 3988 | [param('ns3::Address &', 'address')], |
| 3989 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3990 | ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function] |
| 3991 | cls.add_method('GetSocketType', |
| 3992 | 'ns3::Socket::SocketType', |
| 3993 | [], |
| 3994 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3995 | ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function] |
| 3996 | cls.add_method('GetTxAvailable', |
| 3997 | 'uint32_t', |
| 3998 | [], |
| 3999 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4000 | ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function] |
| 4001 | cls.add_method('IsRecvPktInfo', |
| 4002 | 'bool', |
| 4003 | [], |
| 4004 | is_const=True) |
| 4005 | ## socket.h (module 'network'): int ns3::Socket::Listen() [member function] |
| 4006 | cls.add_method('Listen', |
| 4007 | 'int', |
| 4008 | [], |
| 4009 | is_pure_virtual=True, is_virtual=True) |
| 4010 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function] |
| 4011 | cls.add_method('Recv', |
| 4012 | 'ns3::Ptr< ns3::Packet >', |
| 4013 | [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], |
| 4014 | is_pure_virtual=True, is_virtual=True) |
| 4015 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function] |
| 4016 | cls.add_method('Recv', |
| 4017 | 'ns3::Ptr< ns3::Packet >', |
| 4018 | []) |
| 4019 | ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function] |
| 4020 | cls.add_method('Recv', |
| 4021 | 'int', |
| 4022 | [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')]) |
| 4023 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function] |
| 4024 | cls.add_method('RecvFrom', |
| 4025 | 'ns3::Ptr< ns3::Packet >', |
| 4026 | [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], |
| 4027 | is_pure_virtual=True, is_virtual=True) |
| 4028 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function] |
| 4029 | cls.add_method('RecvFrom', |
| 4030 | 'ns3::Ptr< ns3::Packet >', |
| 4031 | [param('ns3::Address &', 'fromAddress')]) |
| 4032 | ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function] |
| 4033 | cls.add_method('RecvFrom', |
| 4034 | 'int', |
| 4035 | [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')]) |
| 4036 | ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function] |
| 4037 | cls.add_method('Send', |
| 4038 | 'int', |
| 4039 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], |
| 4040 | is_pure_virtual=True, is_virtual=True) |
| 4041 | ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 4042 | cls.add_method('Send', |
| 4043 | 'int', |
| 4044 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 4045 | ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function] |
| 4046 | cls.add_method('Send', |
| 4047 | 'int', |
| 4048 | [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')]) |
| 4049 | ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function] |
| 4050 | cls.add_method('SendTo', |
| 4051 | 'int', |
| 4052 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], |
| 4053 | is_pure_virtual=True, is_virtual=True) |
| 4054 | ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function] |
| 4055 | cls.add_method('SendTo', |
| 4056 | 'int', |
| 4057 | [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')]) |
| 4058 | ## 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] |
| 4059 | cls.add_method('SetAcceptCallback', |
| 4060 | 'void', |
| 4061 | [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')]) |
| 4062 | ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function] |
| 4063 | cls.add_method('SetAllowBroadcast', |
| 4064 | 'bool', |
| 4065 | [param('bool', 'allowBroadcast')], |
| 4066 | is_pure_virtual=True, is_virtual=True) |
| 4067 | ## 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] |
| 4068 | cls.add_method('SetCloseCallbacks', |
| 4069 | 'void', |
| 4070 | [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')]) |
| 4071 | ## 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] |
| 4072 | cls.add_method('SetConnectCallback', |
| 4073 | 'void', |
| 4074 | [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')]) |
| 4075 | ## 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] |
| 4076 | cls.add_method('SetDataSentCallback', |
| 4077 | 'void', |
| 4078 | [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')]) |
| 4079 | ## 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] |
| 4080 | cls.add_method('SetRecvCallback', |
| 4081 | 'void', |
| 4082 | [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')]) |
| 4083 | ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function] |
| 4084 | cls.add_method('SetRecvPktInfo', |
| 4085 | 'void', |
| 4086 | [param('bool', 'flag')]) |
| 4087 | ## 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] |
| 4088 | cls.add_method('SetSendCallback', |
| 4089 | 'void', |
| 4090 | [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')]) |
| 4091 | ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function] |
| 4092 | cls.add_method('ShutdownRecv', |
| 4093 | 'int', |
| 4094 | [], |
| 4095 | is_pure_virtual=True, is_virtual=True) |
| 4096 | ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function] |
| 4097 | cls.add_method('ShutdownSend', |
| 4098 | 'int', |
| 4099 | [], |
| 4100 | is_pure_virtual=True, is_virtual=True) |
| 4101 | ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function] |
| 4102 | cls.add_method('DoDispose', |
| 4103 | 'void', |
| 4104 | [], |
| 4105 | visibility='protected', is_virtual=True) |
| 4106 | ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function] |
| 4107 | cls.add_method('NotifyConnectionFailed', |
| 4108 | 'void', |
| 4109 | [], |
| 4110 | visibility='protected') |
| 4111 | ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function] |
| 4112 | cls.add_method('NotifyConnectionRequest', |
| 4113 | 'bool', |
| 4114 | [param('ns3::Address const &', 'from')], |
| 4115 | visibility='protected') |
| 4116 | ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function] |
| 4117 | cls.add_method('NotifyConnectionSucceeded', |
| 4118 | 'void', |
| 4119 | [], |
| 4120 | visibility='protected') |
| 4121 | ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function] |
| 4122 | cls.add_method('NotifyDataRecv', |
| 4123 | 'void', |
| 4124 | [], |
| 4125 | visibility='protected') |
| 4126 | ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function] |
| 4127 | cls.add_method('NotifyDataSent', |
| 4128 | 'void', |
| 4129 | [param('uint32_t', 'size')], |
| 4130 | visibility='protected') |
| 4131 | ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function] |
| 4132 | cls.add_method('NotifyErrorClose', |
| 4133 | 'void', |
| 4134 | [], |
| 4135 | visibility='protected') |
| 4136 | ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function] |
| 4137 | cls.add_method('NotifyNewConnectionCreated', |
| 4138 | 'void', |
| 4139 | [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')], |
| 4140 | visibility='protected') |
| 4141 | ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function] |
| 4142 | cls.add_method('NotifyNormalClose', |
| 4143 | 'void', |
| 4144 | [], |
| 4145 | visibility='protected') |
| 4146 | ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function] |
| 4147 | cls.add_method('NotifySend', |
| 4148 | 'void', |
| 4149 | [param('uint32_t', 'spaceAvailable')], |
| 4150 | visibility='protected') |
| 4151 | return |
| 4152 | |
| 4153 | def register_Ns3Tag_methods(root_module, cls): |
| 4154 | cls.add_output_stream_operator() |
| 4155 | ## tag.h (module 'network'): ns3::Tag::Tag() [constructor] |
| 4156 | cls.add_constructor([]) |
| 4157 | ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor] |
| 4158 | cls.add_constructor([param('ns3::Tag const &', 'arg0')]) |
| 4159 | ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function] |
| 4160 | cls.add_method('Deserialize', |
| 4161 | 'void', |
| 4162 | [param('ns3::TagBuffer', 'i')], |
| 4163 | is_pure_virtual=True, is_virtual=True) |
| 4164 | ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function] |
| 4165 | cls.add_method('GetSerializedSize', |
| 4166 | 'uint32_t', |
| 4167 | [], |
| 4168 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4169 | ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function] |
| 4170 | cls.add_method('GetTypeId', |
| 4171 | 'ns3::TypeId', |
| 4172 | [], |
| 4173 | is_static=True) |
| 4174 | ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function] |
| 4175 | cls.add_method('Print', |
| 4176 | 'void', |
| 4177 | [param('std::ostream &', 'os')], |
| 4178 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4179 | ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function] |
| 4180 | cls.add_method('Serialize', |
| 4181 | 'void', |
| 4182 | [param('ns3::TagBuffer', 'i')], |
| 4183 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4184 | return |
| 4185 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4186 | def register_Ns3Time_methods(root_module, cls): |
| 4187 | cls.add_binary_comparison_operator('!=') |
| 4188 | cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right')) |
| 4189 | cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right')) |
| 4190 | cls.add_output_stream_operator() |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 4191 | cls.add_binary_comparison_operator('<=') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4192 | cls.add_binary_comparison_operator('==') |
| 4193 | cls.add_binary_comparison_operator('>=') |
| 4194 | cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
| 4195 | cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
| 4196 | cls.add_binary_comparison_operator('<') |
| 4197 | cls.add_binary_comparison_operator('>') |
| 4198 | ## nstime.h (module 'core'): ns3::Time::Time() [constructor] |
| 4199 | cls.add_constructor([]) |
| 4200 | ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor] |
| 4201 | cls.add_constructor([param('ns3::Time const &', 'o')]) |
| 4202 | ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor] |
| 4203 | cls.add_constructor([param('double', 'v')]) |
| 4204 | ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor] |
| 4205 | cls.add_constructor([param('int', 'v')]) |
| 4206 | ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor] |
| 4207 | cls.add_constructor([param('long int', 'v')]) |
| 4208 | ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor] |
| 4209 | cls.add_constructor([param('long long int', 'v')]) |
| 4210 | ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor] |
| 4211 | cls.add_constructor([param('unsigned int', 'v')]) |
| 4212 | ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor] |
| 4213 | cls.add_constructor([param('long unsigned int', 'v')]) |
| 4214 | ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor] |
| 4215 | cls.add_constructor([param('long long unsigned int', 'v')]) |
| 4216 | ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor] |
| 4217 | cls.add_constructor([param('std::string const &', 's')]) |
| 4218 | ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor] |
| 4219 | cls.add_constructor([param('ns3::int64x64_t const &', 'value')]) |
| 4220 | ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function] |
| 4221 | cls.add_method('Compare', |
| 4222 | 'int', |
| 4223 | [param('ns3::Time const &', 'o')], |
| 4224 | is_const=True) |
| 4225 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function] |
| 4226 | cls.add_method('From', |
| 4227 | 'ns3::Time', |
| 4228 | [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], |
| 4229 | is_static=True) |
| 4230 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function] |
| 4231 | cls.add_method('From', |
| 4232 | 'ns3::Time', |
| 4233 | [param('ns3::int64x64_t const &', 'value')], |
| 4234 | is_static=True) |
| 4235 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function] |
| 4236 | cls.add_method('FromDouble', |
| 4237 | 'ns3::Time', |
| 4238 | [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
| 4239 | is_static=True) |
| 4240 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function] |
| 4241 | cls.add_method('FromInteger', |
| 4242 | 'ns3::Time', |
| 4243 | [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
| 4244 | is_static=True) |
| 4245 | ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function] |
| 4246 | cls.add_method('GetDouble', |
| 4247 | 'double', |
| 4248 | [], |
| 4249 | is_const=True) |
| 4250 | ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function] |
| 4251 | cls.add_method('GetFemtoSeconds', |
| 4252 | 'int64_t', |
| 4253 | [], |
| 4254 | is_const=True) |
| 4255 | ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function] |
| 4256 | cls.add_method('GetInteger', |
| 4257 | 'int64_t', |
| 4258 | [], |
| 4259 | is_const=True) |
| 4260 | ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function] |
| 4261 | cls.add_method('GetMicroSeconds', |
| 4262 | 'int64_t', |
| 4263 | [], |
| 4264 | is_const=True) |
| 4265 | ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function] |
| 4266 | cls.add_method('GetMilliSeconds', |
| 4267 | 'int64_t', |
| 4268 | [], |
| 4269 | is_const=True) |
| 4270 | ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function] |
| 4271 | cls.add_method('GetNanoSeconds', |
| 4272 | 'int64_t', |
| 4273 | [], |
| 4274 | is_const=True) |
| 4275 | ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function] |
| 4276 | cls.add_method('GetPicoSeconds', |
| 4277 | 'int64_t', |
| 4278 | [], |
| 4279 | is_const=True) |
| 4280 | ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function] |
| 4281 | cls.add_method('GetResolution', |
| 4282 | 'ns3::Time::Unit', |
| 4283 | [], |
| 4284 | is_static=True) |
| 4285 | ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function] |
| 4286 | cls.add_method('GetSeconds', |
| 4287 | 'double', |
| 4288 | [], |
| 4289 | is_const=True) |
| 4290 | ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function] |
| 4291 | cls.add_method('GetTimeStep', |
| 4292 | 'int64_t', |
| 4293 | [], |
| 4294 | is_const=True) |
| 4295 | ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function] |
| 4296 | cls.add_method('IsNegative', |
| 4297 | 'bool', |
| 4298 | [], |
| 4299 | is_const=True) |
| 4300 | ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function] |
| 4301 | cls.add_method('IsPositive', |
| 4302 | 'bool', |
| 4303 | [], |
| 4304 | is_const=True) |
| 4305 | ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function] |
| 4306 | cls.add_method('IsStrictlyNegative', |
| 4307 | 'bool', |
| 4308 | [], |
| 4309 | is_const=True) |
| 4310 | ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function] |
| 4311 | cls.add_method('IsStrictlyPositive', |
| 4312 | 'bool', |
| 4313 | [], |
| 4314 | is_const=True) |
| 4315 | ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function] |
| 4316 | cls.add_method('IsZero', |
| 4317 | 'bool', |
| 4318 | [], |
| 4319 | is_const=True) |
| 4320 | ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function] |
| 4321 | cls.add_method('SetResolution', |
| 4322 | 'void', |
| 4323 | [param('ns3::Time::Unit', 'resolution')], |
| 4324 | is_static=True) |
| 4325 | ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function] |
| 4326 | cls.add_method('To', |
| 4327 | 'ns3::int64x64_t', |
| 4328 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4329 | is_const=True) |
| 4330 | ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function] |
| 4331 | cls.add_method('ToDouble', |
| 4332 | 'double', |
| 4333 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4334 | is_const=True) |
| 4335 | ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function] |
| 4336 | cls.add_method('ToInteger', |
| 4337 | 'int64_t', |
| 4338 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4339 | is_const=True) |
| 4340 | return |
| 4341 | |
| 4342 | def register_Ns3TopologyReader_methods(root_module, cls): |
| 4343 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor] |
| 4344 | cls.add_constructor([]) |
| 4345 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function] |
| 4346 | cls.add_method('AddLink', |
| 4347 | 'void', |
| 4348 | [param('ns3::TopologyReader::Link', 'link')]) |
| 4349 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function] |
| 4350 | cls.add_method('GetFileName', |
| 4351 | 'std::string', |
| 4352 | [], |
| 4353 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4354 | ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function] |
| 4355 | cls.add_method('LinksBegin', |
| 4356 | 'std::_List_const_iterator< ns3::TopologyReader::Link >', |
| 4357 | [], |
| 4358 | is_const=True) |
| 4359 | ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function] |
| 4360 | cls.add_method('LinksEmpty', |
| 4361 | 'bool', |
| 4362 | [], |
| 4363 | is_const=True) |
| 4364 | ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function] |
| 4365 | cls.add_method('LinksEnd', |
| 4366 | 'std::_List_const_iterator< ns3::TopologyReader::Link >', |
| 4367 | [], |
| 4368 | is_const=True) |
| 4369 | ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function] |
| 4370 | cls.add_method('LinksSize', |
| 4371 | 'int', |
| 4372 | [], |
| 4373 | is_const=True) |
| 4374 | ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function] |
| 4375 | cls.add_method('Read', |
| 4376 | 'ns3::NodeContainer', |
| 4377 | [], |
| 4378 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4379 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4380 | cls.add_method('SetFileName', |
| 4381 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4382 | [param('std::string const &', 'fileName')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4383 | return |
| 4384 | |
| 4385 | def register_Ns3TopologyReaderLink_methods(root_module, cls): |
| 4386 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor] |
| 4387 | cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')]) |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 4388 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor] |
| 4389 | cls.add_constructor([]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4390 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::Ptr<ns3::Node> fromPtr, std::string const & fromName, ns3::Ptr<ns3::Node> toPtr, std::string const & toName) [constructor] |
| 4391 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'fromPtr'), param('std::string const &', 'fromName'), param('ns3::Ptr< ns3::Node >', 'toPtr'), param('std::string const &', 'toName')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4392 | ## 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] |
| 4393 | cls.add_method('AttributesBegin', |
| 4394 | '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 > > > >', |
| 4395 | []) |
| 4396 | ## 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] |
| 4397 | cls.add_method('AttributesEnd', |
| 4398 | '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 > > > >', |
| 4399 | []) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4400 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4401 | cls.add_method('GetAttribute', |
| 4402 | 'std::string', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4403 | [param('std::string const &', 'name')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4404 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4405 | ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4406 | cls.add_method('GetAttributeFailSafe', |
| 4407 | 'bool', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4408 | [param('std::string const &', 'name'), param('std::string &', 'value')], |
| 4409 | is_const=True) |
| 4410 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function] |
| 4411 | cls.add_method('GetFromNetDevice', |
| 4412 | 'ns3::Ptr< ns3::NetDevice >', |
| 4413 | [], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4414 | is_const=True) |
| 4415 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function] |
| 4416 | cls.add_method('GetFromNode', |
| 4417 | 'ns3::Ptr< ns3::Node >', |
| 4418 | [], |
| 4419 | is_const=True) |
| 4420 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function] |
| 4421 | cls.add_method('GetFromNodeName', |
| 4422 | 'std::string', |
| 4423 | [], |
| 4424 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4425 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function] |
| 4426 | cls.add_method('GetToNetDevice', |
| 4427 | 'ns3::Ptr< ns3::NetDevice >', |
| 4428 | [], |
| 4429 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4430 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function] |
| 4431 | cls.add_method('GetToNode', |
| 4432 | 'ns3::Ptr< ns3::Node >', |
| 4433 | [], |
| 4434 | is_const=True) |
| 4435 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function] |
| 4436 | cls.add_method('GetToNodeName', |
| 4437 | 'std::string', |
| 4438 | [], |
| 4439 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4440 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4441 | cls.add_method('SetAttribute', |
| 4442 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4443 | [param('std::string const &', 'name'), param('std::string const &', 'value')]) |
| 4444 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function] |
| 4445 | cls.add_method('SetNetDevices', |
| 4446 | 'void', |
| 4447 | [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4448 | return |
| 4449 | |
| 4450 | def register_Ns3TraceSourceAccessor_methods(root_module, cls): |
| 4451 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor] |
| 4452 | cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')]) |
| 4453 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor] |
| 4454 | cls.add_constructor([]) |
| 4455 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
| 4456 | cls.add_method('Connect', |
| 4457 | 'bool', |
| 4458 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
| 4459 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4460 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
| 4461 | cls.add_method('ConnectWithoutContext', |
| 4462 | 'bool', |
| 4463 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
| 4464 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4465 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
| 4466 | cls.add_method('Disconnect', |
| 4467 | 'bool', |
| 4468 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
| 4469 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4470 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
| 4471 | cls.add_method('DisconnectWithoutContext', |
| 4472 | 'bool', |
| 4473 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
| 4474 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4475 | return |
| 4476 | |
| 4477 | def register_Ns3Trailer_methods(root_module, cls): |
| 4478 | cls.add_output_stream_operator() |
| 4479 | ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor] |
| 4480 | cls.add_constructor([]) |
| 4481 | ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor] |
| 4482 | cls.add_constructor([param('ns3::Trailer const &', 'arg0')]) |
| 4483 | ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function] |
| 4484 | cls.add_method('Deserialize', |
| 4485 | 'uint32_t', |
| 4486 | [param('ns3::Buffer::Iterator', 'end')], |
| 4487 | is_pure_virtual=True, is_virtual=True) |
| 4488 | ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function] |
| 4489 | cls.add_method('GetSerializedSize', |
| 4490 | 'uint32_t', |
| 4491 | [], |
| 4492 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4493 | ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function] |
| 4494 | cls.add_method('GetTypeId', |
| 4495 | 'ns3::TypeId', |
| 4496 | [], |
| 4497 | is_static=True) |
| 4498 | ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function] |
| 4499 | cls.add_method('Print', |
| 4500 | 'void', |
| 4501 | [param('std::ostream &', 'os')], |
| 4502 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4503 | ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 4504 | cls.add_method('Serialize', |
| 4505 | 'void', |
| 4506 | [param('ns3::Buffer::Iterator', 'start')], |
| 4507 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4508 | return |
| 4509 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4510 | def register_Ns3WeightsPathStretchTag_methods(root_module, cls): |
| 4511 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag(ns3::WeightsPathStretchTag const & arg0) [copy constructor] |
| 4512 | cls.add_constructor([param('ns3::WeightsPathStretchTag const &', 'arg0')]) |
| 4513 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag() [constructor] |
| 4514 | cls.add_constructor([]) |
| 4515 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::AddPathInfo(ns3::Ptr<ns3::Node> node, uint32_t weight) [member function] |
| 4516 | cls.add_method('AddPathInfo', |
| 4517 | 'void', |
| 4518 | [param('ns3::Ptr< ns3::Node >', 'node'), param('uint32_t', 'weight')]) |
| 4519 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Deserialize(ns3::TagBuffer i) [member function] |
| 4520 | cls.add_method('Deserialize', |
| 4521 | 'void', |
| 4522 | [param('ns3::TagBuffer', 'i')], |
| 4523 | is_virtual=True) |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 4524 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetDestinationNode() const [member function] |
| 4525 | cls.add_method('GetDestinationNode', |
| 4526 | 'ns3::Ptr< ns3::Node >', |
| 4527 | [], |
| 4528 | is_const=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4529 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): std::list<ns3::WeightsPathStretchTag::NodeWeightPair, std::allocator<ns3::WeightsPathStretchTag::NodeWeightPair> > const & ns3::WeightsPathStretchTag::GetInfos() const [member function] |
| 4530 | cls.add_method('GetInfos', |
| 4531 | 'std::list< ns3::WeightsPathStretchTag::NodeWeightPair > const &', |
| 4532 | [], |
| 4533 | is_const=True) |
| 4534 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint32_t ns3::WeightsPathStretchTag::GetSerializedSize() const [member function] |
| 4535 | cls.add_method('GetSerializedSize', |
| 4536 | 'uint32_t', |
| 4537 | [], |
| 4538 | is_const=True, is_virtual=True) |
| 4539 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetSourceNode() const [member function] |
| 4540 | cls.add_method('GetSourceNode', |
| 4541 | 'ns3::Ptr< ns3::Node >', |
| 4542 | [], |
| 4543 | is_const=True) |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 4544 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint64_t ns3::WeightsPathStretchTag::GetTotalWeight() const [member function] |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4545 | cls.add_method('GetTotalWeight', |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 4546 | 'uint64_t', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4547 | [], |
| 4548 | is_const=True) |
| 4549 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): static ns3::TypeId ns3::WeightsPathStretchTag::GetTypeId() [member function] |
| 4550 | cls.add_method('GetTypeId', |
| 4551 | 'ns3::TypeId', |
| 4552 | [], |
| 4553 | is_static=True) |
| 4554 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Print(std::ostream & os) const [member function] |
| 4555 | cls.add_method('Print', |
| 4556 | 'void', |
| 4557 | [param('std::ostream &', 'os')], |
| 4558 | is_const=True, is_virtual=True) |
| 4559 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Serialize(ns3::TagBuffer i) const [member function] |
| 4560 | cls.add_method('Serialize', |
| 4561 | 'void', |
| 4562 | [param('ns3::TagBuffer', 'i')], |
| 4563 | is_const=True, is_virtual=True) |
| 4564 | return |
| 4565 | |
| 4566 | def register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, cls): |
| 4567 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::WeightsPathStretchTag::NodeWeightPair const & arg0) [copy constructor] |
| 4568 | cls.add_constructor([param('ns3::WeightsPathStretchTag::NodeWeightPair const &', 'arg0')]) |
| 4569 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair() [constructor] |
| 4570 | cls.add_constructor([]) |
| 4571 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::Ptr<ns3::Node> _node, uint32_t _weight) [constructor] |
| 4572 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', '_node'), param('uint32_t', '_weight')]) |
| 4573 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::node [variable] |
| 4574 | cls.add_instance_attribute('node', 'ns3::Ptr< ns3::Node >', is_const=False) |
| 4575 | ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::weight [variable] |
| 4576 | cls.add_instance_attribute('weight', 'uint32_t', is_const=False) |
| 4577 | return |
| 4578 | |
| 4579 | def register_Ns3WindowTracer_methods(root_module, cls): |
| 4580 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(ns3::WindowTracer const & arg0) [copy constructor] |
| 4581 | cls.add_constructor([param('ns3::WindowTracer const &', 'arg0')]) |
| 4582 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor] |
| 4583 | cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 4584 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): static void ns3::WindowTracer::PrintHeader(std::ostream & os) [member function] |
| 4585 | cls.add_method('PrintHeader', |
| 4586 | 'void', |
| 4587 | [param('std::ostream &', 'os')], |
| 4588 | is_static=True) |
| 4589 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::WindowTracer::OnWindowChange(std::string context, uint32_t oldValue, uint32_t newValue) [member function] |
| 4590 | cls.add_method('OnWindowChange', |
| 4591 | 'void', |
| 4592 | [param('std::string', 'context'), param('uint32_t', 'oldValue'), param('uint32_t', 'newValue')], |
| 4593 | is_virtual=True) |
| 4594 | return |
| 4595 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4596 | def register_Ns3AnnotatedTopologyReader_methods(root_module, cls): |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 4597 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor] |
| 4598 | cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4599 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function] |
| 4600 | cls.add_method('Read', |
| 4601 | 'ns3::NodeContainer', |
| 4602 | [], |
| 4603 | is_virtual=True) |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 4604 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function] |
| 4605 | cls.add_method('GetNodes', |
| 4606 | 'ns3::NodeContainer', |
| 4607 | [], |
| 4608 | is_const=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4609 | ## annotated-topology-reader.h (module 'NDNabstraction'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function] |
| 4610 | cls.add_method('GetLinks', |
| 4611 | 'std::list< ns3::TopologyReader::Link > const &', |
| 4612 | [], |
| 4613 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4614 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function] |
| 4615 | cls.add_method('AssignIpv4Addresses', |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4616 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4617 | [param('ns3::Ipv4Address', 'base')]) |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 4618 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function] |
| 4619 | cls.add_method('SetBoundingBox', |
| 4620 | 'void', |
| 4621 | [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')]) |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 4622 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function] |
| 4623 | cls.add_method('SetMobilityModel', |
| 4624 | 'void', |
| 4625 | [param('std::string const &', 'model')]) |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 4626 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function] |
| 4627 | cls.add_method('ApplyOspfMetric', |
| 4628 | 'void', |
| 4629 | []) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 4630 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SavePositions(std::string const & file) const [member function] |
| 4631 | cls.add_method('SavePositions', |
| 4632 | 'void', |
| 4633 | [param('std::string const &', 'file')], |
| 4634 | is_const=True) |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 4635 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name) [member function] |
| 4636 | cls.add_method('CreateNode', |
| 4637 | 'ns3::Ptr< ns3::Node >', |
| 4638 | [param('std::string const', 'name')], |
| 4639 | visibility='protected') |
| 4640 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, double posX, double posY) [member function] |
| 4641 | cls.add_method('CreateNode', |
| 4642 | 'ns3::Ptr< ns3::Node >', |
| 4643 | [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY')], |
| 4644 | visibility='protected') |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 4645 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function] |
| 4646 | cls.add_method('ApplySettings', |
| 4647 | 'void', |
| 4648 | [], |
| 4649 | visibility='protected') |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4650 | return |
| 4651 | |
| 4652 | def register_Ns3Application_methods(root_module, cls): |
| 4653 | ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor] |
| 4654 | cls.add_constructor([param('ns3::Application const &', 'arg0')]) |
| 4655 | ## application.h (module 'network'): ns3::Application::Application() [constructor] |
| 4656 | cls.add_constructor([]) |
| 4657 | ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function] |
| 4658 | cls.add_method('GetNode', |
| 4659 | 'ns3::Ptr< ns3::Node >', |
| 4660 | [], |
| 4661 | is_const=True) |
| 4662 | ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function] |
| 4663 | cls.add_method('GetTypeId', |
| 4664 | 'ns3::TypeId', |
| 4665 | [], |
| 4666 | is_static=True) |
| 4667 | ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 4668 | cls.add_method('SetNode', |
| 4669 | 'void', |
| 4670 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 4671 | ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function] |
| 4672 | cls.add_method('SetStartTime', |
| 4673 | 'void', |
| 4674 | [param('ns3::Time', 'start')]) |
| 4675 | ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function] |
| 4676 | cls.add_method('SetStopTime', |
| 4677 | 'void', |
| 4678 | [param('ns3::Time', 'stop')]) |
| 4679 | ## application.h (module 'network'): void ns3::Application::DoDispose() [member function] |
| 4680 | cls.add_method('DoDispose', |
| 4681 | 'void', |
| 4682 | [], |
| 4683 | visibility='protected', is_virtual=True) |
| 4684 | ## application.h (module 'network'): void ns3::Application::DoStart() [member function] |
| 4685 | cls.add_method('DoStart', |
| 4686 | 'void', |
| 4687 | [], |
| 4688 | visibility='protected', is_virtual=True) |
| 4689 | ## application.h (module 'network'): void ns3::Application::StartApplication() [member function] |
| 4690 | cls.add_method('StartApplication', |
| 4691 | 'void', |
| 4692 | [], |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4693 | visibility='protected', is_virtual=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4694 | ## application.h (module 'network'): void ns3::Application::StopApplication() [member function] |
| 4695 | cls.add_method('StopApplication', |
| 4696 | 'void', |
| 4697 | [], |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4698 | visibility='protected', is_virtual=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4699 | return |
| 4700 | |
| 4701 | def register_Ns3AttributeAccessor_methods(root_module, cls): |
| 4702 | ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor] |
| 4703 | cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')]) |
| 4704 | ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor] |
| 4705 | cls.add_constructor([]) |
| 4706 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function] |
| 4707 | cls.add_method('Get', |
| 4708 | 'bool', |
| 4709 | [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], |
| 4710 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4711 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function] |
| 4712 | cls.add_method('HasGetter', |
| 4713 | 'bool', |
| 4714 | [], |
| 4715 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4716 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function] |
| 4717 | cls.add_method('HasSetter', |
| 4718 | 'bool', |
| 4719 | [], |
| 4720 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4721 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function] |
| 4722 | cls.add_method('Set', |
| 4723 | 'bool', |
| 4724 | [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], |
| 4725 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4726 | return |
| 4727 | |
| 4728 | def register_Ns3AttributeChecker_methods(root_module, cls): |
| 4729 | ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor] |
| 4730 | cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')]) |
| 4731 | ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor] |
| 4732 | cls.add_constructor([]) |
| 4733 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function] |
| 4734 | cls.add_method('Check', |
| 4735 | 'bool', |
| 4736 | [param('ns3::AttributeValue const &', 'value')], |
| 4737 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4738 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function] |
| 4739 | cls.add_method('Copy', |
| 4740 | 'bool', |
| 4741 | [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], |
| 4742 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4743 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function] |
| 4744 | cls.add_method('Create', |
| 4745 | 'ns3::Ptr< ns3::AttributeValue >', |
| 4746 | [], |
| 4747 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4748 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function] |
| 4749 | cls.add_method('CreateValidValue', |
| 4750 | 'ns3::Ptr< ns3::AttributeValue >', |
| 4751 | [param('ns3::AttributeValue const &', 'value')], |
| 4752 | is_const=True) |
| 4753 | ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function] |
| 4754 | cls.add_method('GetUnderlyingTypeInformation', |
| 4755 | 'std::string', |
| 4756 | [], |
| 4757 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4758 | ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function] |
| 4759 | cls.add_method('GetValueTypeName', |
| 4760 | 'std::string', |
| 4761 | [], |
| 4762 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4763 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function] |
| 4764 | cls.add_method('HasUnderlyingTypeInformation', |
| 4765 | 'bool', |
| 4766 | [], |
| 4767 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4768 | return |
| 4769 | |
| 4770 | def register_Ns3AttributeValue_methods(root_module, cls): |
| 4771 | ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor] |
| 4772 | cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')]) |
| 4773 | ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor] |
| 4774 | cls.add_constructor([]) |
| 4775 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function] |
| 4776 | cls.add_method('Copy', |
| 4777 | 'ns3::Ptr< ns3::AttributeValue >', |
| 4778 | [], |
| 4779 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4780 | ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 4781 | cls.add_method('DeserializeFromString', |
| 4782 | 'bool', |
| 4783 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4784 | is_pure_virtual=True, is_virtual=True) |
| 4785 | ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 4786 | cls.add_method('SerializeToString', |
| 4787 | 'std::string', |
| 4788 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4789 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4790 | return |
| 4791 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4792 | def register_Ns3BatchesChecker_methods(root_module, cls): |
| 4793 | ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker() [constructor] |
| 4794 | cls.add_constructor([]) |
| 4795 | ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker(ns3::BatchesChecker const & arg0) [copy constructor] |
| 4796 | cls.add_constructor([param('ns3::BatchesChecker const &', 'arg0')]) |
| 4797 | return |
| 4798 | |
| 4799 | def register_Ns3BatchesValue_methods(root_module, cls): |
| 4800 | ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue() [constructor] |
| 4801 | cls.add_constructor([]) |
| 4802 | ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::BatchesValue const & arg0) [copy constructor] |
| 4803 | cls.add_constructor([param('ns3::BatchesValue const &', 'arg0')]) |
| 4804 | ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::Batches const & value) [constructor] |
| 4805 | cls.add_constructor([param('ns3::Batches const &', 'value')]) |
| 4806 | ## batches.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::BatchesValue::Copy() const [member function] |
| 4807 | cls.add_method('Copy', |
| 4808 | 'ns3::Ptr< ns3::AttributeValue >', |
| 4809 | [], |
| 4810 | is_const=True, is_virtual=True) |
| 4811 | ## batches.h (module 'NDNabstraction'): bool ns3::BatchesValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 4812 | cls.add_method('DeserializeFromString', |
| 4813 | 'bool', |
| 4814 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4815 | is_virtual=True) |
| 4816 | ## batches.h (module 'NDNabstraction'): ns3::Batches ns3::BatchesValue::Get() const [member function] |
| 4817 | cls.add_method('Get', |
| 4818 | 'ns3::Batches', |
| 4819 | [], |
| 4820 | is_const=True) |
| 4821 | ## batches.h (module 'NDNabstraction'): std::string ns3::BatchesValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 4822 | cls.add_method('SerializeToString', |
| 4823 | 'std::string', |
| 4824 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4825 | is_const=True, is_virtual=True) |
| 4826 | ## batches.h (module 'NDNabstraction'): void ns3::BatchesValue::Set(ns3::Batches const & value) [member function] |
| 4827 | cls.add_method('Set', |
| 4828 | 'void', |
| 4829 | [param('ns3::Batches const &', 'value')]) |
| 4830 | return |
| 4831 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4832 | def register_Ns3CallbackChecker_methods(root_module, cls): |
| 4833 | ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor] |
| 4834 | cls.add_constructor([]) |
| 4835 | ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor] |
| 4836 | cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')]) |
| 4837 | return |
| 4838 | |
| 4839 | def register_Ns3CallbackImplBase_methods(root_module, cls): |
| 4840 | ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor] |
| 4841 | cls.add_constructor([]) |
| 4842 | ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor] |
| 4843 | cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')]) |
| 4844 | ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function] |
| 4845 | cls.add_method('IsEqual', |
| 4846 | 'bool', |
| 4847 | [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], |
| 4848 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4849 | return |
| 4850 | |
| 4851 | def register_Ns3CallbackValue_methods(root_module, cls): |
| 4852 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor] |
| 4853 | cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')]) |
| 4854 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor] |
| 4855 | cls.add_constructor([]) |
| 4856 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor] |
| 4857 | cls.add_constructor([param('ns3::CallbackBase const &', 'base')]) |
| 4858 | ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function] |
| 4859 | cls.add_method('Copy', |
| 4860 | 'ns3::Ptr< ns3::AttributeValue >', |
| 4861 | [], |
| 4862 | is_const=True, is_virtual=True) |
| 4863 | ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 4864 | cls.add_method('DeserializeFromString', |
| 4865 | 'bool', |
| 4866 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4867 | is_virtual=True) |
| 4868 | ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 4869 | cls.add_method('SerializeToString', |
| 4870 | 'std::string', |
| 4871 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 4872 | is_const=True, is_virtual=True) |
| 4873 | ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function] |
| 4874 | cls.add_method('Set', |
| 4875 | 'void', |
| 4876 | [param('ns3::CallbackBase', 'base')]) |
| 4877 | return |
| 4878 | |
| 4879 | def register_Ns3Ccnx_methods(root_module, cls): |
| 4880 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx() [constructor] |
| 4881 | cls.add_constructor([]) |
| 4882 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor] |
| 4883 | cls.add_constructor([param('ns3::Ccnx const &', 'arg0')]) |
| 4884 | ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 4885 | cls.add_method('AddFace', |
| 4886 | 'uint32_t', |
| 4887 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')], |
| 4888 | is_pure_virtual=True, is_virtual=True) |
| 4889 | ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function] |
| 4890 | cls.add_method('GetFace', |
| 4891 | 'ns3::Ptr< ns3::CcnxFace >', |
| 4892 | [param('uint32_t', 'face')], |
| 4893 | is_pure_virtual=True, is_const=True, is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4894 | ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function] |
| 4895 | cls.add_method('GetFaceByNetDevice', |
| 4896 | 'ns3::Ptr< ns3::CcnxFace >', |
| 4897 | [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')], |
| 4898 | is_pure_virtual=True, is_const=True, is_virtual=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4899 | ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function] |
| 4900 | cls.add_method('GetForwardingStrategy', |
| 4901 | 'ns3::Ptr< ns3::CcnxForwardingStrategy >', |
| 4902 | [], |
| 4903 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4904 | ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::GetNFaces() const [member function] |
| 4905 | cls.add_method('GetNFaces', |
| 4906 | 'uint32_t', |
| 4907 | [], |
| 4908 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4909 | ## ccnx.h (module 'NDNabstraction'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function] |
| 4910 | cls.add_method('GetTypeId', |
| 4911 | 'ns3::TypeId', |
| 4912 | [], |
| 4913 | is_static=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4914 | ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::RemoveFace(ns3::Ptr<ns3::CcnxFace> face) [member function] |
| 4915 | cls.add_method('RemoveFace', |
| 4916 | 'void', |
| 4917 | [param('ns3::Ptr< ns3::CcnxFace >', 'face')], |
| 4918 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 4919 | ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function] |
| 4920 | cls.add_method('SetForwardingStrategy', |
| 4921 | 'void', |
| 4922 | [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')], |
| 4923 | is_pure_virtual=True, is_virtual=True) |
| 4924 | return |
| 4925 | |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4926 | def register_Ns3CcnxApp_methods(root_module, cls): |
| 4927 | ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp(ns3::CcnxApp const & arg0) [copy constructor] |
| 4928 | cls.add_constructor([param('ns3::CcnxApp const &', 'arg0')]) |
| 4929 | ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp() [constructor] |
| 4930 | cls.add_constructor([]) |
| 4931 | ## ccnx-app.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxApp::GetTypeId() [member function] |
| 4932 | cls.add_method('GetTypeId', |
| 4933 | 'ns3::TypeId', |
| 4934 | [], |
| 4935 | is_static=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4936 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnContentObject(ns3::Ptr<const ns3::CcnxContentObjectHeader> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4937 | cls.add_method('OnContentObject', |
| 4938 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4939 | [param('ns3::Ptr< ns3::CcnxContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')], |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4940 | is_virtual=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4941 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnInterest(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4942 | cls.add_method('OnInterest', |
| 4943 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4944 | [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')], |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4945 | is_virtual=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4946 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnNack(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4947 | cls.add_method('OnNack', |
| 4948 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 4949 | [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')], |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 4950 | is_virtual=True) |
| 4951 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::RegisterProtocolHandler(ns3::Callback<bool, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function] |
| 4952 | cls.add_method('RegisterProtocolHandler', |
| 4953 | 'void', |
| 4954 | [param('ns3::Callback< bool, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')]) |
| 4955 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::DoDispose() [member function] |
| 4956 | cls.add_method('DoDispose', |
| 4957 | 'void', |
| 4958 | [], |
| 4959 | visibility='protected', is_virtual=True) |
| 4960 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StartApplication() [member function] |
| 4961 | cls.add_method('StartApplication', |
| 4962 | 'void', |
| 4963 | [], |
| 4964 | visibility='protected', is_virtual=True) |
| 4965 | ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StopApplication() [member function] |
| 4966 | cls.add_method('StopApplication', |
| 4967 | 'void', |
| 4968 | [], |
| 4969 | visibility='protected', is_virtual=True) |
| 4970 | return |
| 4971 | |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 4972 | def register_Ns3CcnxAppTracer_methods(root_module, cls): |
| 4973 | cls.add_output_stream_operator() |
| 4974 | ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(ns3::CcnxAppTracer const & arg0) [copy constructor] |
| 4975 | cls.add_constructor([param('ns3::CcnxAppTracer const &', 'arg0')]) |
| 4976 | ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor] |
| 4977 | cls.add_constructor([param('std::string const &', 'app'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 4978 | ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, std::string const & node, std::string const & appId="*") [constructor] |
| 4979 | cls.add_constructor([param('std::string const &', 'app'), param('std::string const &', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 4980 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Connect() [member function] |
| 4981 | cls.add_method('Connect', |
| 4982 | 'void', |
| 4983 | []) |
| 4984 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<ns3::CcnxApp> arg3, ns3::Ptr<ns3::CcnxFace> arg4) [member function] |
| 4985 | cls.add_method('InData', |
| 4986 | 'void', |
| 4987 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxApp >', 'arg3'), param('ns3::Ptr< ns3::CcnxFace >', 'arg4')], |
| 4988 | is_pure_virtual=True, is_virtual=True) |
| 4989 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function] |
| 4990 | cls.add_method('InInterests', |
| 4991 | 'void', |
| 4992 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')], |
| 4993 | is_pure_virtual=True, is_virtual=True) |
| 4994 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function] |
| 4995 | cls.add_method('InNacks', |
| 4996 | 'void', |
| 4997 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')], |
| 4998 | is_pure_virtual=True, is_virtual=True) |
| 4999 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::OutData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<ns3::CcnxApp> arg3, ns3::Ptr<ns3::CcnxFace> arg4) [member function] |
| 5000 | cls.add_method('OutData', |
| 5001 | 'void', |
| 5002 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxApp >', 'arg3'), param('ns3::Ptr< ns3::CcnxFace >', 'arg4')], |
| 5003 | is_pure_virtual=True, is_virtual=True) |
| 5004 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::OutInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function] |
| 5005 | cls.add_method('OutInterests', |
| 5006 | 'void', |
| 5007 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')], |
| 5008 | is_pure_virtual=True, is_virtual=True) |
| 5009 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Print(std::ostream & os) const [member function] |
| 5010 | cls.add_method('Print', |
| 5011 | 'void', |
| 5012 | [param('std::ostream &', 'os')], |
| 5013 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5014 | ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::PrintHeader(std::ostream & os) const [member function] |
| 5015 | cls.add_method('PrintHeader', |
| 5016 | 'void', |
| 5017 | [param('std::ostream &', 'os')], |
| 5018 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5019 | return |
| 5020 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5021 | def register_Ns3CcnxConsumerWindowTracer_methods(root_module, cls): |
| 5022 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(ns3::CcnxConsumerWindowTracer const & arg0) [copy constructor] |
| 5023 | cls.add_constructor([param('ns3::CcnxConsumerWindowTracer const &', 'arg0')]) |
| 5024 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor] |
| 5025 | cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 5026 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::CcnxConsumerWindowTracer::Connect() [member function] |
| 5027 | cls.add_method('Connect', |
| 5028 | 'void', |
| 5029 | []) |
| 5030 | return |
| 5031 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5032 | def register_Ns3CcnxContentObjectHeader_methods(root_module, cls): |
| 5033 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor] |
| 5034 | cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')]) |
| 5035 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor] |
| 5036 | cls.add_constructor([]) |
| 5037 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5038 | cls.add_method('Deserialize', |
| 5039 | 'uint32_t', |
| 5040 | [param('ns3::Buffer::Iterator', 'start')], |
| 5041 | is_virtual=True) |
| 5042 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function] |
| 5043 | cls.add_method('GetInstanceTypeId', |
| 5044 | 'ns3::TypeId', |
| 5045 | [], |
| 5046 | is_const=True, is_virtual=True) |
| 5047 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxContentObjectHeader::GetName() const [member function] |
| 5048 | cls.add_method('GetName', |
| 5049 | 'ns3::CcnxNameComponents const &', |
| 5050 | [], |
| 5051 | is_const=True) |
| 5052 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function] |
| 5053 | cls.add_method('GetSerializedSize', |
| 5054 | 'uint32_t', |
| 5055 | [], |
| 5056 | is_const=True, is_virtual=True) |
| 5057 | ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function] |
| 5058 | cls.add_method('GetTypeId', |
| 5059 | 'ns3::TypeId', |
| 5060 | [], |
| 5061 | is_static=True) |
| 5062 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function] |
| 5063 | cls.add_method('Print', |
| 5064 | 'void', |
| 5065 | [param('std::ostream &', 'os')], |
| 5066 | is_const=True, is_virtual=True) |
| 5067 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5068 | cls.add_method('Serialize', |
| 5069 | 'void', |
| 5070 | [param('ns3::Buffer::Iterator', 'start')], |
| 5071 | is_const=True, is_virtual=True) |
| 5072 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function] |
| 5073 | cls.add_method('SetName', |
| 5074 | 'void', |
| 5075 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')]) |
| 5076 | return |
| 5077 | |
| 5078 | def register_Ns3CcnxContentObjectTail_methods(root_module, cls): |
| 5079 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor] |
| 5080 | cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')]) |
| 5081 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor] |
| 5082 | cls.add_constructor([]) |
| 5083 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5084 | cls.add_method('Deserialize', |
| 5085 | 'uint32_t', |
| 5086 | [param('ns3::Buffer::Iterator', 'start')], |
| 5087 | is_virtual=True) |
| 5088 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function] |
| 5089 | cls.add_method('GetInstanceTypeId', |
| 5090 | 'ns3::TypeId', |
| 5091 | [], |
| 5092 | is_const=True, is_virtual=True) |
| 5093 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function] |
| 5094 | cls.add_method('GetSerializedSize', |
| 5095 | 'uint32_t', |
| 5096 | [], |
| 5097 | is_const=True, is_virtual=True) |
| 5098 | ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function] |
| 5099 | cls.add_method('GetTypeId', |
| 5100 | 'ns3::TypeId', |
| 5101 | [], |
| 5102 | is_static=True) |
| 5103 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function] |
| 5104 | cls.add_method('Print', |
| 5105 | 'void', |
| 5106 | [param('std::ostream &', 'os')], |
| 5107 | is_const=True, is_virtual=True) |
| 5108 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5109 | cls.add_method('Serialize', |
| 5110 | 'void', |
| 5111 | [param('ns3::Buffer::Iterator', 'start')], |
| 5112 | is_const=True, is_virtual=True) |
| 5113 | return |
| 5114 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5115 | def register_Ns3CcnxFace_methods(root_module, cls): |
| 5116 | cls.add_output_stream_operator() |
| 5117 | cls.add_binary_comparison_operator('<') |
| 5118 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5119 | ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace(ns3::Ptr<ns3::Node> node) [constructor] |
| 5120 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5121 | ## ccnx-face.h (module 'NDNabstraction'): uint32_t ns3::CcnxFace::GetId() const [member function] |
| 5122 | cls.add_method('GetId', |
| 5123 | 'uint32_t', |
| 5124 | [], |
| 5125 | is_const=True) |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 5126 | ## ccnx-face.h (module 'NDNabstraction'): uint16_t ns3::CcnxFace::GetMetric() const [member function] |
| 5127 | cls.add_method('GetMetric', |
| 5128 | 'uint16_t', |
| 5129 | [], |
| 5130 | is_const=True, is_virtual=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5131 | ## ccnx-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::CcnxFace::GetNode() const [member function] |
| 5132 | cls.add_method('GetNode', |
| 5133 | 'ns3::Ptr< ns3::Node >', |
| 5134 | [], |
| 5135 | is_const=True) |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 5136 | ## ccnx-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function] |
| 5137 | cls.add_method('GetTypeId', |
| 5138 | 'ns3::TypeId', |
| 5139 | [], |
| 5140 | is_static=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5141 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsBelowLimit() [member function] |
| 5142 | cls.add_method('IsBelowLimit', |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5143 | 'bool', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5144 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5145 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsUp() const [member function] |
| 5146 | cls.add_method('IsUp', |
| 5147 | 'bool', |
| 5148 | [], |
| 5149 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 5150 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::LeakBucket() [member function] |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5151 | cls.add_method('LeakBucket', |
| 5152 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5153 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5154 | ## ccnx-face.h (module 'NDNabstraction'): std::ostream & ns3::CcnxFace::Print(std::ostream & os) const [member function] |
| 5155 | cls.add_method('Print', |
| 5156 | 'std::ostream &', |
| 5157 | [param('std::ostream &', 'os')], |
| 5158 | is_const=True, is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5159 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function] |
| 5160 | cls.add_method('Receive', |
| 5161 | 'bool', |
| 5162 | [param('ns3::Ptr< ns3::Packet const > const &', 'p')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5163 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function] |
| 5164 | cls.add_method('RegisterProtocolHandler', |
| 5165 | 'void', |
| 5166 | [param('ns3::Callback< void, ns3::Ptr< ns3::CcnxFace >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5167 | is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5168 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 5169 | cls.add_method('Send', |
| 5170 | 'bool', |
| 5171 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 5172 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketLeak(double leak) [member function] |
| 5173 | cls.add_method('SetBucketLeak', |
| 5174 | 'void', |
| 5175 | [param('double', 'leak')]) |
| 5176 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketMax(double bucket) [member function] |
| 5177 | cls.add_method('SetBucketMax', |
| 5178 | 'void', |
| 5179 | [param('double', 'bucket')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5180 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetId(uint32_t id) [member function] |
| 5181 | cls.add_method('SetId', |
| 5182 | 'void', |
| 5183 | [param('uint32_t', 'id')]) |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 5184 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function] |
| 5185 | cls.add_method('SetMetric', |
| 5186 | 'void', |
| 5187 | [param('uint16_t', 'metric')], |
| 5188 | is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5189 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetUp(bool up=true) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5190 | cls.add_method('SetUp', |
| 5191 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5192 | [param('bool', 'up', default_value='true')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5193 | is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5194 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function] |
| 5195 | cls.add_method('SendImpl', |
| 5196 | 'void', |
| 5197 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 5198 | is_pure_virtual=True, visibility='protected', is_virtual=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5199 | return |
| 5200 | |
| 5201 | def register_Ns3CcnxFaceContainer_methods(root_module, cls): |
| 5202 | ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor] |
| 5203 | cls.add_constructor([]) |
| 5204 | ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor] |
| 5205 | cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')]) |
| 5206 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 5207 | cls.add_method('Add', |
| 5208 | 'void', |
| 5209 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')]) |
| 5210 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::Ptr<ns3::CcnxFaceContainer> other) [member function] |
| 5211 | cls.add_method('AddAll', |
| 5212 | 'void', |
| 5213 | [param('ns3::Ptr< ns3::CcnxFaceContainer >', 'other')]) |
| 5214 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function] |
| 5215 | cls.add_method('AddAll', |
| 5216 | 'void', |
| 5217 | [param('ns3::CcnxFaceContainer const &', 'other')]) |
| 5218 | ## 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] |
| 5219 | cls.add_method('Begin', |
| 5220 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', |
| 5221 | [], |
| 5222 | is_const=True) |
| 5223 | ## 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] |
| 5224 | cls.add_method('End', |
| 5225 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', |
| 5226 | [], |
| 5227 | is_const=True) |
| 5228 | ## 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] |
| 5229 | cls.add_method('Get', |
| 5230 | 'ns3::Ptr< ns3::CcnxFace >', |
| 5231 | [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')], |
| 5232 | is_const=True) |
| 5233 | ## ccnx-face-container.h (module 'NDNabstraction'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function] |
| 5234 | cls.add_method('GetN', |
| 5235 | 'uint32_t', |
| 5236 | [], |
| 5237 | is_const=True) |
| 5238 | return |
| 5239 | |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5240 | def register_Ns3CcnxFib_methods(root_module, cls): |
| 5241 | cls.add_output_stream_operator() |
| 5242 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::CcnxFib() [constructor] |
| 5243 | cls.add_constructor([]) |
| 5244 | ## ccnx-fib.h (module 'NDNabstraction'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::Add(ns3::CcnxNameComponents const & prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function] |
| 5245 | cls.add_method('Add', |
| 5246 | 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >', |
| 5247 | [param('ns3::CcnxNameComponents const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')]) |
| 5248 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry const & ns3::CcnxFib::GetCcnxFibEntry(uint32_t index) [member function] |
| 5249 | cls.add_method('GetCcnxFibEntry', |
| 5250 | 'ns3::CcnxFibEntry const &', |
| 5251 | [param('uint32_t', 'index')]) |
| 5252 | ## ccnx-fib.h (module 'NDNabstraction'): uint32_t ns3::CcnxFib::GetCcnxFibEntryCount() const [member function] |
| 5253 | cls.add_method('GetCcnxFibEntryCount', |
| 5254 | 'uint32_t', |
| 5255 | [], |
| 5256 | is_const=True) |
| 5257 | ## ccnx-fib.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFib::GetTypeId() [member function] |
| 5258 | cls.add_method('GetTypeId', |
| 5259 | 'ns3::TypeId', |
| 5260 | [], |
| 5261 | is_static=True) |
| 5262 | ## ccnx-fib.h (module 'NDNabstraction'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::LongestPrefixMatch(ns3::CcnxInterestHeader const & interest) const [member function] |
| 5263 | cls.add_method('LongestPrefixMatch', |
| 5264 | 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >', |
| 5265 | [param('ns3::CcnxInterestHeader const &', 'interest')], |
| 5266 | is_const=True) |
| 5267 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::Remove(ns3::CcnxFibEntry const & entry, ns3::Ptr<ns3::CcnxFace> face) [member function] |
| 5268 | cls.add_method('Remove', |
| 5269 | 'void', |
| 5270 | [param('ns3::CcnxFibEntry const &', 'entry'), param('ns3::Ptr< ns3::CcnxFace >', 'face')]) |
| 5271 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::RemoveFromAll(ns3::Ptr<ns3::CcnxFace> face) [member function] |
| 5272 | cls.add_method('RemoveFromAll', |
| 5273 | 'void', |
| 5274 | [param('ns3::Ptr< ns3::CcnxFace >', 'face')]) |
| 5275 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::m_fib [variable] |
| 5276 | cls.add_instance_attribute('m_fib', 'boost::multi_index::multi_index_container< ns3::CcnxFibEntry, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< boost::multi_index::tag< ns3::__ccnx_private::i_prefix, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::const_mem_fun< ns3::CcnxFibEntry, ns3::CcnxNameComponents const &, & ( ns3::CcnxFibEntry::GetPrefix ( ) const ) >, ns3::CcnxPrefixHash, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::__ccnx_private::i_nth, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na > >, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, std::allocator< ns3::CcnxFibEntry > >', is_const=False) |
| 5277 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::DoDispose() [member function] |
| 5278 | cls.add_method('DoDispose', |
| 5279 | 'void', |
| 5280 | [], |
| 5281 | visibility='protected', is_virtual=True) |
| 5282 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::NotifyNewAggregate() [member function] |
| 5283 | cls.add_method('NotifyNewAggregate', |
| 5284 | 'void', |
| 5285 | [], |
| 5286 | visibility='protected', is_virtual=True) |
| 5287 | return |
| 5288 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5289 | def register_Ns3CcnxFibEntry_methods(root_module, cls): |
| 5290 | cls.add_output_stream_operator() |
| 5291 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxFibEntry const & arg0) [copy constructor] |
| 5292 | cls.add_constructor([param('ns3::CcnxFibEntry const &', 'arg0')]) |
| 5293 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxNameComponents const & prefix) [constructor] |
| 5294 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'prefix')]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5295 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function] |
| 5296 | cls.add_method('AddOrUpdateRoutingMetric', |
| 5297 | 'void', |
| 5298 | [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')]) |
| 5299 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric const & ns3::CcnxFibEntry::FindBestCandidate(uint32_t skip=0) const [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5300 | cls.add_method('FindBestCandidate', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5301 | 'ns3::CcnxFibFaceMetric const &', |
| 5302 | [param('uint32_t', 'skip', default_value='0')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5303 | is_const=True) |
| 5304 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxFibEntry::GetPrefix() const [member function] |
| 5305 | cls.add_method('GetPrefix', |
| 5306 | 'ns3::CcnxNameComponents const &', |
| 5307 | [], |
| 5308 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5309 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::RemoveFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 5310 | cls.add_method('RemoveFace', |
| 5311 | 'void', |
| 5312 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')]) |
| 5313 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateFaceRtt(ns3::Ptr<ns3::CcnxFace> face, ns3::Time const & sample) [member function] |
| 5314 | cls.add_method('UpdateFaceRtt', |
| 5315 | 'void', |
| 5316 | [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Time const &', 'sample')]) |
| 5317 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateStatus(ns3::Ptr<ns3::CcnxFace> face, ns3::CcnxFibFaceMetric::Status status) [member function] |
| 5318 | cls.add_method('UpdateStatus', |
| 5319 | 'void', |
| 5320 | [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::CcnxFibFaceMetric::Status', 'status')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5321 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_faces [variable] |
| 5322 | cls.add_instance_attribute('m_faces', 'boost::multi_index::multi_index_container< ns3::CcnxFibFaceMetric, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::__ccnx_private::i_face, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::member< ns3::CcnxFibFaceMetric, ns3::Ptr< ns3::CcnxFace >, & ( ns3::CcnxFibFaceMetric::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::__ccnx_private::i_metric, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::composite_key< ns3::CcnxFibFaceMetric, boost::multi_index::member< ns3::CcnxFibFaceMetric, ns3::CcnxFibFaceMetric::Status, & ( ns3::CcnxFibFaceMetric::m_status ) >, boost::multi_index::member< ns3::CcnxFibFaceMetric, int, & ( ns3::CcnxFibFaceMetric::m_routingCost ) >, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type >, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::__ccnx_private::i_nth, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na > >, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, std::allocator< ns3::CcnxFibFaceMetric > >', is_const=False) |
| 5323 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_needsProbing [variable] |
| 5324 | cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False) |
| 5325 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_prefix [variable] |
| 5326 | cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::CcnxNameComponents >', is_const=False) |
| 5327 | return |
| 5328 | |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5329 | def register_Ns3CcnxFibEntryNoFaces_methods(root_module, cls): |
| 5330 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces() [constructor] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5331 | cls.add_constructor([]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5332 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces(ns3::CcnxFibEntry::NoFaces const & arg0) [copy constructor] |
| 5333 | cls.add_constructor([param('ns3::CcnxFibEntry::NoFaces const &', 'arg0')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5334 | return |
| 5335 | |
| 5336 | def register_Ns3CcnxInterestHeader_methods(root_module, cls): |
| 5337 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor] |
| 5338 | cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')]) |
| 5339 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor] |
| 5340 | cls.add_constructor([]) |
| 5341 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5342 | cls.add_method('Deserialize', |
| 5343 | 'uint32_t', |
| 5344 | [param('ns3::Buffer::Iterator', 'start')], |
| 5345 | is_virtual=True) |
| 5346 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetExclude() const [member function] |
| 5347 | cls.add_method('GetExclude', |
| 5348 | 'ns3::CcnxNameComponents const &', |
| 5349 | [], |
| 5350 | is_const=True) |
| 5351 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function] |
| 5352 | cls.add_method('GetInstanceTypeId', |
| 5353 | 'ns3::TypeId', |
| 5354 | [], |
| 5355 | is_const=True, is_virtual=True) |
| 5356 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function] |
| 5357 | cls.add_method('GetInterestLifetime', |
| 5358 | 'ns3::Time', |
| 5359 | [], |
| 5360 | is_const=True) |
| 5361 | ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function] |
| 5362 | cls.add_method('GetMaxSuffixComponents', |
| 5363 | 'int32_t', |
| 5364 | [], |
| 5365 | is_const=True) |
| 5366 | ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function] |
| 5367 | cls.add_method('GetMinSuffixComponents', |
| 5368 | 'int32_t', |
| 5369 | [], |
| 5370 | is_const=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5371 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNack() const [member function] |
| 5372 | cls.add_method('GetNack', |
| 5373 | 'uint32_t', |
| 5374 | [], |
| 5375 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5376 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetName() const [member function] |
| 5377 | cls.add_method('GetName', |
| 5378 | 'ns3::CcnxNameComponents const &', |
| 5379 | [], |
| 5380 | is_const=True) |
| 5381 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function] |
| 5382 | cls.add_method('GetNonce', |
| 5383 | 'uint32_t', |
| 5384 | [], |
| 5385 | is_const=True) |
| 5386 | ## ccnx-interest-header.h (module 'NDNabstraction'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function] |
| 5387 | cls.add_method('GetScope', |
| 5388 | 'int8_t', |
| 5389 | [], |
| 5390 | is_const=True) |
| 5391 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function] |
| 5392 | cls.add_method('GetSerializedSize', |
| 5393 | 'uint32_t', |
| 5394 | [], |
| 5395 | is_const=True, is_virtual=True) |
| 5396 | ## ccnx-interest-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function] |
| 5397 | cls.add_method('GetTypeId', |
| 5398 | 'ns3::TypeId', |
| 5399 | [], |
| 5400 | is_static=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5401 | ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function] |
| 5402 | cls.add_method('IsEnabledAnswerOriginKind', |
| 5403 | 'bool', |
| 5404 | [], |
| 5405 | is_const=True) |
| 5406 | ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function] |
| 5407 | cls.add_method('IsEnabledChildSelector', |
| 5408 | 'bool', |
| 5409 | [], |
| 5410 | is_const=True) |
| 5411 | ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledExclude() const [member function] |
| 5412 | cls.add_method('IsEnabledExclude', |
| 5413 | 'bool', |
| 5414 | [], |
| 5415 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5416 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function] |
| 5417 | cls.add_method('Print', |
| 5418 | 'void', |
| 5419 | [param('std::ostream &', 'os')], |
| 5420 | is_const=True, is_virtual=True) |
| 5421 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5422 | cls.add_method('Serialize', |
| 5423 | 'void', |
| 5424 | [param('ns3::Buffer::Iterator', 'start')], |
| 5425 | is_const=True, is_virtual=True) |
| 5426 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function] |
| 5427 | cls.add_method('SetAnswerOriginKind', |
| 5428 | 'void', |
| 5429 | [param('bool', 'value')]) |
| 5430 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function] |
| 5431 | cls.add_method('SetChildSelector', |
| 5432 | 'void', |
| 5433 | [param('bool', 'value')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5434 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::CcnxNameComponents> const & exclude) [member function] |
| 5435 | cls.add_method('SetExclude', |
| 5436 | 'void', |
| 5437 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'exclude')]) |
| 5438 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function] |
| 5439 | cls.add_method('SetInterestLifetime', |
| 5440 | 'void', |
| 5441 | [param('ns3::Time', 'time')]) |
| 5442 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function] |
| 5443 | cls.add_method('SetMaxSuffixComponents', |
| 5444 | 'void', |
| 5445 | [param('int32_t', 'value')]) |
| 5446 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function] |
| 5447 | cls.add_method('SetMinSuffixComponents', |
| 5448 | 'void', |
| 5449 | [param('int32_t', 'value')]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5450 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNack(uint32_t nackType) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5451 | cls.add_method('SetNack', |
| 5452 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 5453 | [param('uint32_t', 'nackType')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5454 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function] |
| 5455 | cls.add_method('SetName', |
| 5456 | 'void', |
| 5457 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')]) |
| 5458 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function] |
| 5459 | cls.add_method('SetNonce', |
| 5460 | 'void', |
| 5461 | [param('uint32_t', 'nonce')]) |
| 5462 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function] |
| 5463 | cls.add_method('SetScope', |
| 5464 | 'void', |
| 5465 | [param('int8_t', 'scope')]) |
| 5466 | return |
| 5467 | |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 5468 | def register_Ns3CcnxL3Tracer_methods(root_module, cls): |
| 5469 | cls.add_output_stream_operator() |
| 5470 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::CcnxL3Tracer const & arg0) [copy constructor] |
| 5471 | cls.add_constructor([param('ns3::CcnxL3Tracer const &', 'arg0')]) |
| 5472 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::Ptr<ns3::Node> node) [constructor] |
| 5473 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
| 5474 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(std::string const & node) [constructor] |
| 5475 | cls.add_constructor([param('std::string const &', 'node')]) |
| 5476 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Connect() [member function] |
| 5477 | cls.add_method('Connect', |
| 5478 | 'void', |
| 5479 | []) |
| 5480 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ccnx::DropReason arg3, ns3::Ptr<const ns3::CcnxFace> arg4) [member function] |
| 5481 | cls.add_method('DropData', |
| 5482 | 'void', |
| 5483 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ccnx::DropReason', 'arg3'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg4')], |
| 5484 | is_pure_virtual=True, is_virtual=True) |
| 5485 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ccnx::DropReason arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function] |
| 5486 | cls.add_method('DropInterests', |
| 5487 | 'void', |
| 5488 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')], |
| 5489 | is_pure_virtual=True, is_virtual=True) |
| 5490 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ccnx::DropReason arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function] |
| 5491 | cls.add_method('DropNacks', |
| 5492 | 'void', |
| 5493 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')], |
| 5494 | is_pure_virtual=True, is_virtual=True) |
| 5495 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function] |
| 5496 | cls.add_method('InData', |
| 5497 | 'void', |
| 5498 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')], |
| 5499 | is_pure_virtual=True, is_virtual=True) |
| 5500 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function] |
| 5501 | cls.add_method('InInterests', |
| 5502 | 'void', |
| 5503 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')], |
| 5504 | is_pure_virtual=True, is_virtual=True) |
| 5505 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function] |
| 5506 | cls.add_method('InNacks', |
| 5507 | 'void', |
| 5508 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')], |
| 5509 | is_pure_virtual=True, is_virtual=True) |
| 5510 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, bool fromCache, ns3::Ptr<const ns3::CcnxFace> arg4) [member function] |
| 5511 | cls.add_method('OutData', |
| 5512 | 'void', |
| 5513 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('bool', 'fromCache'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg4')], |
| 5514 | is_pure_virtual=True, is_virtual=True) |
| 5515 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function] |
| 5516 | cls.add_method('OutInterests', |
| 5517 | 'void', |
| 5518 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')], |
| 5519 | is_pure_virtual=True, is_virtual=True) |
| 5520 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function] |
| 5521 | cls.add_method('OutNacks', |
| 5522 | 'void', |
| 5523 | [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')], |
| 5524 | is_pure_virtual=True, is_virtual=True) |
| 5525 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Print(std::ostream & os) const [member function] |
| 5526 | cls.add_method('Print', |
| 5527 | 'void', |
| 5528 | [param('std::ostream &', 'os')], |
| 5529 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5530 | ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::PrintHeader(std::ostream & os) const [member function] |
| 5531 | cls.add_method('PrintHeader', |
| 5532 | 'void', |
| 5533 | [param('std::ostream &', 'os')], |
| 5534 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5535 | return |
| 5536 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5537 | def register_Ns3CcnxNameComponents_methods(root_module, cls): |
| 5538 | cls.add_output_stream_operator() |
| 5539 | cls.add_binary_comparison_operator('<') |
| 5540 | cls.add_binary_comparison_operator('==') |
| 5541 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(ns3::CcnxNameComponents const & arg0) [copy constructor] |
| 5542 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'arg0')]) |
| 5543 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents() [constructor] |
| 5544 | cls.add_constructor([]) |
| 5545 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor] |
| 5546 | cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5547 | ## ccnx-name-components.h (module 'NDNabstraction'): std::list<std::string, std::allocator<std::string> > const & ns3::CcnxNameComponents::GetComponents() const [member function] |
| 5548 | cls.add_method('GetComponents', |
| 5549 | 'std::list< std::string > const &', |
| 5550 | [], |
| 5551 | is_const=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5552 | ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponents::GetLastComponent() const [member function] |
| 5553 | cls.add_method('GetLastComponent', |
| 5554 | 'std::string', |
| 5555 | [], |
| 5556 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5557 | ## ccnx-name-components.h (module 'NDNabstraction'): std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > ns3::CcnxNameComponents::GetSubComponents(size_t num) const [member function] |
| 5558 | cls.add_method('GetSubComponents', |
| 5559 | 'std::list< boost::reference_wrapper< std::string const > >', |
| 5560 | [param('size_t', 'num')], |
| 5561 | is_const=True) |
| 5562 | ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponents::Print(std::ostream & os) const [member function] |
| 5563 | cls.add_method('Print', |
| 5564 | 'void', |
| 5565 | [param('std::ostream &', 'os')], |
| 5566 | is_const=True) |
| 5567 | ## ccnx-name-components.h (module 'NDNabstraction'): size_t ns3::CcnxNameComponents::size() const [member function] |
| 5568 | cls.add_method('size', |
| 5569 | 'size_t', |
| 5570 | [], |
| 5571 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5572 | return |
| 5573 | |
| 5574 | def register_Ns3CcnxNameComponentsChecker_methods(root_module, cls): |
| 5575 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker() [constructor] |
| 5576 | cls.add_constructor([]) |
| 5577 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker(ns3::CcnxNameComponentsChecker const & arg0) [copy constructor] |
| 5578 | cls.add_constructor([param('ns3::CcnxNameComponentsChecker const &', 'arg0')]) |
| 5579 | return |
| 5580 | |
| 5581 | def register_Ns3CcnxNameComponentsValue_methods(root_module, cls): |
| 5582 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue() [constructor] |
| 5583 | cls.add_constructor([]) |
| 5584 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponentsValue const & arg0) [copy constructor] |
| 5585 | cls.add_constructor([param('ns3::CcnxNameComponentsValue const &', 'arg0')]) |
| 5586 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponents const & value) [constructor] |
| 5587 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'value')]) |
| 5588 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::CcnxNameComponentsValue::Copy() const [member function] |
| 5589 | cls.add_method('Copy', |
| 5590 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5591 | [], |
| 5592 | is_const=True, is_virtual=True) |
| 5593 | ## ccnx-name-components.h (module 'NDNabstraction'): bool ns3::CcnxNameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5594 | cls.add_method('DeserializeFromString', |
| 5595 | 'bool', |
| 5596 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5597 | is_virtual=True) |
| 5598 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents ns3::CcnxNameComponentsValue::Get() const [member function] |
| 5599 | cls.add_method('Get', |
| 5600 | 'ns3::CcnxNameComponents', |
| 5601 | [], |
| 5602 | is_const=True) |
| 5603 | ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5604 | cls.add_method('SerializeToString', |
| 5605 | 'std::string', |
| 5606 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5607 | is_const=True, is_virtual=True) |
| 5608 | ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponentsValue::Set(ns3::CcnxNameComponents const & value) [member function] |
| 5609 | cls.add_method('Set', |
| 5610 | 'void', |
| 5611 | [param('ns3::CcnxNameComponents const &', 'value')]) |
| 5612 | return |
| 5613 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5614 | def register_Ns3CcnxPathWeightTracer_methods(root_module, cls): |
| 5615 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(ns3::CcnxPathWeightTracer const & arg0) [copy constructor] |
| 5616 | cls.add_constructor([param('ns3::CcnxPathWeightTracer const &', 'arg0')]) |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 5617 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(std::ostream & os, ns3::Ptr<ns3::Node> node) [constructor] |
| 5618 | cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5619 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): void ns3::CcnxPathWeightTracer::Connect() [member function] |
| 5620 | cls.add_method('Connect', |
| 5621 | 'void', |
| 5622 | []) |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 5623 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): static void ns3::CcnxPathWeightTracer::PrintHeader(std::ostream & os) [member function] |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5624 | cls.add_method('PrintHeader', |
| 5625 | 'void', |
| 5626 | [param('std::ostream &', 'os')], |
Alexander Afanasyev | 8e0d281 | 2012-01-19 22:38:14 -0800 | [diff] [blame] | 5627 | is_static=True) |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 5628 | ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): void ns3::CcnxPathWeightTracer::InLocalFace(std::string context, ns3::Ptr<ns3::Node> src, ns3::Ptr<ns3::Node> dst, uint32_t seqno, uint32_t weight) [member function] |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5629 | cls.add_method('InLocalFace', |
| 5630 | 'void', |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 5631 | [param('std::string', 'context'), param('ns3::Ptr< ns3::Node >', 'src'), param('ns3::Ptr< ns3::Node >', 'dst'), param('uint32_t', 'seqno'), param('uint32_t', 'weight')], |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5632 | is_virtual=True) |
| 5633 | return |
| 5634 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5635 | def register_Ns3EmptyAttributeValue_methods(root_module, cls): |
| 5636 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor] |
| 5637 | cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')]) |
| 5638 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor] |
| 5639 | cls.add_constructor([]) |
| 5640 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function] |
| 5641 | cls.add_method('Copy', |
| 5642 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5643 | [], |
| 5644 | is_const=True, visibility='private', is_virtual=True) |
| 5645 | ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5646 | cls.add_method('DeserializeFromString', |
| 5647 | 'bool', |
| 5648 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5649 | visibility='private', is_virtual=True) |
| 5650 | ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5651 | cls.add_method('SerializeToString', |
| 5652 | 'std::string', |
| 5653 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5654 | is_const=True, visibility='private', is_virtual=True) |
| 5655 | return |
| 5656 | |
| 5657 | def register_Ns3EventImpl_methods(root_module, cls): |
| 5658 | ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor] |
| 5659 | cls.add_constructor([param('ns3::EventImpl const &', 'arg0')]) |
| 5660 | ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor] |
| 5661 | cls.add_constructor([]) |
| 5662 | ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function] |
| 5663 | cls.add_method('Cancel', |
| 5664 | 'void', |
| 5665 | []) |
| 5666 | ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function] |
| 5667 | cls.add_method('Invoke', |
| 5668 | 'void', |
| 5669 | []) |
| 5670 | ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function] |
| 5671 | cls.add_method('IsCancelled', |
| 5672 | 'bool', |
| 5673 | []) |
| 5674 | ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function] |
| 5675 | cls.add_method('Notify', |
| 5676 | 'void', |
| 5677 | [], |
| 5678 | is_pure_virtual=True, visibility='protected', is_virtual=True) |
| 5679 | return |
| 5680 | |
| 5681 | def register_Ns3IntegerValue_methods(root_module, cls): |
| 5682 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor] |
| 5683 | cls.add_constructor([]) |
| 5684 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor] |
| 5685 | cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')]) |
| 5686 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor] |
| 5687 | cls.add_constructor([param('int64_t const &', 'value')]) |
| 5688 | ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function] |
| 5689 | cls.add_method('Copy', |
| 5690 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5691 | [], |
| 5692 | is_const=True, is_virtual=True) |
| 5693 | ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5694 | cls.add_method('DeserializeFromString', |
| 5695 | 'bool', |
| 5696 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5697 | is_virtual=True) |
| 5698 | ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function] |
| 5699 | cls.add_method('Get', |
| 5700 | 'int64_t', |
| 5701 | [], |
| 5702 | is_const=True) |
| 5703 | ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5704 | cls.add_method('SerializeToString', |
| 5705 | 'std::string', |
| 5706 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5707 | is_const=True, is_virtual=True) |
| 5708 | ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function] |
| 5709 | cls.add_method('Set', |
| 5710 | 'void', |
| 5711 | [param('int64_t const &', 'value')]) |
| 5712 | return |
| 5713 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 5714 | def register_Ns3IpL4Protocol_methods(root_module, cls): |
| 5715 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol() [constructor] |
| 5716 | cls.add_constructor([]) |
| 5717 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol(ns3::IpL4Protocol const & arg0) [copy constructor] |
| 5718 | cls.add_constructor([param('ns3::IpL4Protocol const &', 'arg0')]) |
| 5719 | ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget() const [member function] |
| 5720 | cls.add_method('GetDownTarget', |
| 5721 | 'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
| 5722 | [], |
| 5723 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5724 | ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget6() const [member function] |
| 5725 | cls.add_method('GetDownTarget6', |
| 5726 | 'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
| 5727 | [], |
| 5728 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5729 | ## ip-l4-protocol.h (module 'internet'): int ns3::IpL4Protocol::GetProtocolNumber() const [member function] |
| 5730 | cls.add_method('GetProtocolNumber', |
| 5731 | 'int', |
| 5732 | [], |
| 5733 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5734 | ## ip-l4-protocol.h (module 'internet'): static ns3::TypeId ns3::IpL4Protocol::GetTypeId() [member function] |
| 5735 | cls.add_method('GetTypeId', |
| 5736 | 'ns3::TypeId', |
| 5737 | [], |
| 5738 | is_static=True) |
| 5739 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::Ipv4Interface> incomingInterface) [member function] |
| 5740 | cls.add_method('Receive', |
| 5741 | 'ns3::IpL4Protocol::RxStatus', |
| 5742 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::Ipv4Interface >', 'incomingInterface')], |
| 5743 | is_pure_virtual=True, is_virtual=True) |
| 5744 | ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address & src, ns3::Ipv6Address & dst, ns3::Ptr<ns3::Ipv6Interface> incomingInterface) [member function] |
| 5745 | cls.add_method('Receive', |
| 5746 | 'ns3::IpL4Protocol::RxStatus', |
| 5747 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address &', 'src'), param('ns3::Ipv6Address &', 'dst'), param('ns3::Ptr< ns3::Ipv6Interface >', 'incomingInterface')], |
| 5748 | is_pure_virtual=True, is_virtual=True) |
| 5749 | ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv4Address payloadSource, ns3::Ipv4Address payloadDestination, uint8_t const * payload) [member function] |
| 5750 | cls.add_method('ReceiveIcmp', |
| 5751 | 'void', |
| 5752 | [param('ns3::Ipv4Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv4Address', 'payloadSource'), param('ns3::Ipv4Address', 'payloadDestination'), param('uint8_t const *', 'payload')], |
| 5753 | is_virtual=True) |
| 5754 | ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv6Address payloadSource, ns3::Ipv6Address payloadDestination, uint8_t const * payload) [member function] |
| 5755 | cls.add_method('ReceiveIcmp', |
| 5756 | 'void', |
| 5757 | [param('ns3::Ipv6Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv6Address', 'payloadSource'), param('ns3::Ipv6Address', 'payloadDestination'), param('uint8_t const *', 'payload')], |
| 5758 | is_virtual=True) |
| 5759 | ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
| 5760 | cls.add_method('SetDownTarget', |
| 5761 | 'void', |
| 5762 | [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
| 5763 | is_pure_virtual=True, is_virtual=True) |
| 5764 | ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget6(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
| 5765 | cls.add_method('SetDownTarget6', |
| 5766 | 'void', |
| 5767 | [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
| 5768 | is_pure_virtual=True, is_virtual=True) |
| 5769 | return |
| 5770 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5771 | def register_Ns3Ipv4_methods(root_module, cls): |
| 5772 | ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4(ns3::Ipv4 const & arg0) [copy constructor] |
| 5773 | cls.add_constructor([param('ns3::Ipv4 const &', 'arg0')]) |
| 5774 | ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4() [constructor] |
| 5775 | cls.add_constructor([]) |
| 5776 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::AddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function] |
| 5777 | cls.add_method('AddAddress', |
| 5778 | 'bool', |
| 5779 | [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], |
| 5780 | is_pure_virtual=True, is_virtual=True) |
| 5781 | ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 5782 | cls.add_method('AddInterface', |
| 5783 | 'uint32_t', |
| 5784 | [param('ns3::Ptr< ns3::NetDevice >', 'device')], |
| 5785 | is_pure_virtual=True, is_virtual=True) |
| 5786 | ## ipv4.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4::GetAddress(uint32_t interface, uint32_t addressIndex) const [member function] |
| 5787 | cls.add_method('GetAddress', |
| 5788 | 'ns3::Ipv4InterfaceAddress', |
| 5789 | [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], |
| 5790 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5791 | ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForAddress(ns3::Ipv4Address address) const [member function] |
| 5792 | cls.add_method('GetInterfaceForAddress', |
| 5793 | 'int32_t', |
| 5794 | [param('ns3::Ipv4Address', 'address')], |
| 5795 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5796 | ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function] |
| 5797 | cls.add_method('GetInterfaceForDevice', |
| 5798 | 'int32_t', |
| 5799 | [param('ns3::Ptr< ns3::NetDevice const >', 'device')], |
| 5800 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5801 | ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForPrefix(ns3::Ipv4Address address, ns3::Ipv4Mask mask) const [member function] |
| 5802 | cls.add_method('GetInterfaceForPrefix', |
| 5803 | 'int32_t', |
| 5804 | [param('ns3::Ipv4Address', 'address'), param('ns3::Ipv4Mask', 'mask')], |
| 5805 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5806 | ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMetric(uint32_t interface) const [member function] |
| 5807 | cls.add_method('GetMetric', |
| 5808 | 'uint16_t', |
| 5809 | [param('uint32_t', 'interface')], |
| 5810 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5811 | ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMtu(uint32_t interface) const [member function] |
| 5812 | cls.add_method('GetMtu', |
| 5813 | 'uint16_t', |
| 5814 | [param('uint32_t', 'interface')], |
| 5815 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5816 | ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNAddresses(uint32_t interface) const [member function] |
| 5817 | cls.add_method('GetNAddresses', |
| 5818 | 'uint32_t', |
| 5819 | [param('uint32_t', 'interface')], |
| 5820 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5821 | ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNInterfaces() const [member function] |
| 5822 | cls.add_method('GetNInterfaces', |
| 5823 | 'uint32_t', |
| 5824 | [], |
| 5825 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5826 | ## ipv4.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4::GetNetDevice(uint32_t interface) [member function] |
| 5827 | cls.add_method('GetNetDevice', |
| 5828 | 'ns3::Ptr< ns3::NetDevice >', |
| 5829 | [param('uint32_t', 'interface')], |
| 5830 | is_pure_virtual=True, is_virtual=True) |
| 5831 | ## ipv4.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4::GetRoutingProtocol() const [member function] |
| 5832 | cls.add_method('GetRoutingProtocol', |
| 5833 | 'ns3::Ptr< ns3::Ipv4RoutingProtocol >', |
| 5834 | [], |
| 5835 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5836 | ## ipv4.h (module 'internet'): static ns3::TypeId ns3::Ipv4::GetTypeId() [member function] |
| 5837 | cls.add_method('GetTypeId', |
| 5838 | 'ns3::TypeId', |
| 5839 | [], |
| 5840 | is_static=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 5841 | ## ipv4.h (module 'internet'): void ns3::Ipv4::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function] |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5842 | cls.add_method('Insert', |
| 5843 | 'void', |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 5844 | [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')], |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5845 | is_pure_virtual=True, is_virtual=True) |
| 5846 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function] |
| 5847 | cls.add_method('IsDestinationAddress', |
| 5848 | 'bool', |
| 5849 | [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')], |
| 5850 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5851 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsForwarding(uint32_t interface) const [member function] |
| 5852 | cls.add_method('IsForwarding', |
| 5853 | 'bool', |
| 5854 | [param('uint32_t', 'interface')], |
| 5855 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5856 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsUp(uint32_t interface) const [member function] |
| 5857 | cls.add_method('IsUp', |
| 5858 | 'bool', |
| 5859 | [param('uint32_t', 'interface')], |
| 5860 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5861 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::RemoveAddress(uint32_t interface, uint32_t addressIndex) [member function] |
| 5862 | cls.add_method('RemoveAddress', |
| 5863 | 'bool', |
| 5864 | [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], |
| 5865 | is_pure_virtual=True, is_virtual=True) |
| 5866 | ## ipv4.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4::SelectSourceAddress(ns3::Ptr<const ns3::NetDevice> device, ns3::Ipv4Address dst, ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function] |
| 5867 | cls.add_method('SelectSourceAddress', |
| 5868 | 'ns3::Ipv4Address', |
| 5869 | [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')], |
| 5870 | is_pure_virtual=True, is_virtual=True) |
| 5871 | ## ipv4.h (module 'internet'): void ns3::Ipv4::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol, ns3::Ptr<ns3::Ipv4Route> route) [member function] |
| 5872 | cls.add_method('Send', |
| 5873 | 'void', |
| 5874 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')], |
| 5875 | is_pure_virtual=True, is_virtual=True) |
| 5876 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetDown(uint32_t interface) [member function] |
| 5877 | cls.add_method('SetDown', |
| 5878 | 'void', |
| 5879 | [param('uint32_t', 'interface')], |
| 5880 | is_pure_virtual=True, is_virtual=True) |
| 5881 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetForwarding(uint32_t interface, bool val) [member function] |
| 5882 | cls.add_method('SetForwarding', |
| 5883 | 'void', |
| 5884 | [param('uint32_t', 'interface'), param('bool', 'val')], |
| 5885 | is_pure_virtual=True, is_virtual=True) |
| 5886 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetMetric(uint32_t interface, uint16_t metric) [member function] |
| 5887 | cls.add_method('SetMetric', |
| 5888 | 'void', |
| 5889 | [param('uint32_t', 'interface'), param('uint16_t', 'metric')], |
| 5890 | is_pure_virtual=True, is_virtual=True) |
| 5891 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function] |
| 5892 | cls.add_method('SetRoutingProtocol', |
| 5893 | 'void', |
| 5894 | [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')], |
| 5895 | is_pure_virtual=True, is_virtual=True) |
| 5896 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetUp(uint32_t interface) [member function] |
| 5897 | cls.add_method('SetUp', |
| 5898 | 'void', |
| 5899 | [param('uint32_t', 'interface')], |
| 5900 | is_pure_virtual=True, is_virtual=True) |
| 5901 | ## ipv4.h (module 'internet'): ns3::Ipv4::IF_ANY [variable] |
| 5902 | cls.add_static_attribute('IF_ANY', 'uint32_t const', is_const=True) |
| 5903 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetIpForward() const [member function] |
| 5904 | cls.add_method('GetIpForward', |
| 5905 | 'bool', |
| 5906 | [], |
| 5907 | is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
| 5908 | ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetWeakEsModel() const [member function] |
| 5909 | cls.add_method('GetWeakEsModel', |
| 5910 | 'bool', |
| 5911 | [], |
| 5912 | is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
| 5913 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetIpForward(bool forward) [member function] |
| 5914 | cls.add_method('SetIpForward', |
| 5915 | 'void', |
| 5916 | [param('bool', 'forward')], |
| 5917 | is_pure_virtual=True, visibility='private', is_virtual=True) |
| 5918 | ## ipv4.h (module 'internet'): void ns3::Ipv4::SetWeakEsModel(bool model) [member function] |
| 5919 | cls.add_method('SetWeakEsModel', |
| 5920 | 'void', |
| 5921 | [param('bool', 'model')], |
| 5922 | is_pure_virtual=True, visibility='private', is_virtual=True) |
| 5923 | return |
| 5924 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 5925 | def register_Ns3Ipv4AddressChecker_methods(root_module, cls): |
| 5926 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor] |
| 5927 | cls.add_constructor([]) |
| 5928 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor] |
| 5929 | cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')]) |
| 5930 | return |
| 5931 | |
| 5932 | def register_Ns3Ipv4AddressValue_methods(root_module, cls): |
| 5933 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor] |
| 5934 | cls.add_constructor([]) |
| 5935 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor] |
| 5936 | cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')]) |
| 5937 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor] |
| 5938 | cls.add_constructor([param('ns3::Ipv4Address const &', 'value')]) |
| 5939 | ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function] |
| 5940 | cls.add_method('Copy', |
| 5941 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5942 | [], |
| 5943 | is_const=True, is_virtual=True) |
| 5944 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5945 | cls.add_method('DeserializeFromString', |
| 5946 | 'bool', |
| 5947 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5948 | is_virtual=True) |
| 5949 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function] |
| 5950 | cls.add_method('Get', |
| 5951 | 'ns3::Ipv4Address', |
| 5952 | [], |
| 5953 | is_const=True) |
| 5954 | ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5955 | cls.add_method('SerializeToString', |
| 5956 | 'std::string', |
| 5957 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5958 | is_const=True, is_virtual=True) |
| 5959 | ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function] |
| 5960 | cls.add_method('Set', |
| 5961 | 'void', |
| 5962 | [param('ns3::Ipv4Address const &', 'value')]) |
| 5963 | return |
| 5964 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 5965 | def register_Ns3Ipv4AppTracer_methods(root_module, cls): |
| 5966 | cls.add_output_stream_operator() |
| 5967 | ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ipv4AppTracer const & arg0) [copy constructor] |
| 5968 | cls.add_constructor([param('ns3::Ipv4AppTracer const &', 'arg0')]) |
| 5969 | ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor] |
| 5970 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 5971 | ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Connect() [member function] |
| 5972 | cls.add_method('Connect', |
| 5973 | 'void', |
| 5974 | []) |
| 5975 | ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Print(std::ostream & os) const [member function] |
| 5976 | cls.add_method('Print', |
| 5977 | 'void', |
| 5978 | [param('std::ostream &', 'os')], |
| 5979 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5980 | ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::PrintHeader(std::ostream & os) const [member function] |
| 5981 | cls.add_method('PrintHeader', |
| 5982 | 'void', |
| 5983 | [param('std::ostream &', 'os')], |
| 5984 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5985 | ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Rx(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, uint32_t arg3) [member function] |
| 5986 | cls.add_method('Rx', |
| 5987 | 'void', |
| 5988 | [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')], |
| 5989 | is_pure_virtual=True, is_virtual=True) |
| 5990 | ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Tx(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, uint32_t arg3) [member function] |
| 5991 | cls.add_method('Tx', |
| 5992 | 'void', |
| 5993 | [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')], |
| 5994 | is_pure_virtual=True, is_virtual=True) |
| 5995 | return |
| 5996 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 5997 | def register_Ns3Ipv4L3Protocol_methods(root_module, cls): |
| 5998 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::Ipv4L3Protocol() [constructor] |
| 5999 | cls.add_constructor([]) |
| 6000 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::AddAddress(uint32_t i, ns3::Ipv4InterfaceAddress address) [member function] |
| 6001 | cls.add_method('AddAddress', |
| 6002 | 'bool', |
| 6003 | [param('uint32_t', 'i'), param('ns3::Ipv4InterfaceAddress', 'address')], |
| 6004 | is_virtual=True) |
| 6005 | ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 6006 | cls.add_method('AddInterface', |
| 6007 | 'uint32_t', |
| 6008 | [param('ns3::Ptr< ns3::NetDevice >', 'device')], |
| 6009 | is_virtual=True) |
| 6010 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Socket> ns3::Ipv4L3Protocol::CreateRawSocket() [member function] |
| 6011 | cls.add_method('CreateRawSocket', |
| 6012 | 'ns3::Ptr< ns3::Socket >', |
| 6013 | []) |
| 6014 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DeleteRawSocket(ns3::Ptr<ns3::Socket> socket) [member function] |
| 6015 | cls.add_method('DeleteRawSocket', |
| 6016 | 'void', |
| 6017 | [param('ns3::Ptr< ns3::Socket >', 'socket')]) |
| 6018 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4L3Protocol::GetAddress(uint32_t interfaceIndex, uint32_t addressIndex) const [member function] |
| 6019 | cls.add_method('GetAddress', |
| 6020 | 'ns3::Ipv4InterfaceAddress', |
| 6021 | [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')], |
| 6022 | is_const=True, is_virtual=True) |
| 6023 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Interface> ns3::Ipv4L3Protocol::GetInterface(uint32_t i) const [member function] |
| 6024 | cls.add_method('GetInterface', |
| 6025 | 'ns3::Ptr< ns3::Ipv4Interface >', |
| 6026 | [param('uint32_t', 'i')], |
| 6027 | is_const=True) |
| 6028 | ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForAddress(ns3::Ipv4Address addr) const [member function] |
| 6029 | cls.add_method('GetInterfaceForAddress', |
| 6030 | 'int32_t', |
| 6031 | [param('ns3::Ipv4Address', 'addr')], |
| 6032 | is_const=True, is_virtual=True) |
| 6033 | ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function] |
| 6034 | cls.add_method('GetInterfaceForDevice', |
| 6035 | 'int32_t', |
| 6036 | [param('ns3::Ptr< ns3::NetDevice const >', 'device')], |
| 6037 | is_const=True, is_virtual=True) |
| 6038 | ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForPrefix(ns3::Ipv4Address addr, ns3::Ipv4Mask mask) const [member function] |
| 6039 | cls.add_method('GetInterfaceForPrefix', |
| 6040 | 'int32_t', |
| 6041 | [param('ns3::Ipv4Address', 'addr'), param('ns3::Ipv4Mask', 'mask')], |
| 6042 | is_const=True, is_virtual=True) |
| 6043 | ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMetric(uint32_t i) const [member function] |
| 6044 | cls.add_method('GetMetric', |
| 6045 | 'uint16_t', |
| 6046 | [param('uint32_t', 'i')], |
| 6047 | is_const=True, is_virtual=True) |
| 6048 | ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMtu(uint32_t i) const [member function] |
| 6049 | cls.add_method('GetMtu', |
| 6050 | 'uint16_t', |
| 6051 | [param('uint32_t', 'i')], |
| 6052 | is_const=True, is_virtual=True) |
| 6053 | ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNAddresses(uint32_t interface) const [member function] |
| 6054 | cls.add_method('GetNAddresses', |
| 6055 | 'uint32_t', |
| 6056 | [param('uint32_t', 'interface')], |
| 6057 | is_const=True, is_virtual=True) |
| 6058 | ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNInterfaces() const [member function] |
| 6059 | cls.add_method('GetNInterfaces', |
| 6060 | 'uint32_t', |
| 6061 | [], |
| 6062 | is_const=True, is_virtual=True) |
| 6063 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4L3Protocol::GetNetDevice(uint32_t i) [member function] |
| 6064 | cls.add_method('GetNetDevice', |
| 6065 | 'ns3::Ptr< ns3::NetDevice >', |
| 6066 | [param('uint32_t', 'i')], |
| 6067 | is_virtual=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6068 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::IpL4Protocol> ns3::Ipv4L3Protocol::GetProtocol(int protocolNumber) const [member function] |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6069 | cls.add_method('GetProtocol', |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6070 | 'ns3::Ptr< ns3::IpL4Protocol >', |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6071 | [param('int', 'protocolNumber')], |
| 6072 | is_const=True) |
| 6073 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4L3Protocol::GetRoutingProtocol() const [member function] |
| 6074 | cls.add_method('GetRoutingProtocol', |
| 6075 | 'ns3::Ptr< ns3::Ipv4RoutingProtocol >', |
| 6076 | [], |
| 6077 | is_const=True, is_virtual=True) |
| 6078 | ## ipv4-l3-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4L3Protocol::GetTypeId() [member function] |
| 6079 | cls.add_method('GetTypeId', |
| 6080 | 'ns3::TypeId', |
| 6081 | [], |
| 6082 | is_static=True) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6083 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function] |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6084 | cls.add_method('Insert', |
| 6085 | 'void', |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6086 | [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')], |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6087 | is_virtual=True) |
| 6088 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function] |
| 6089 | cls.add_method('IsDestinationAddress', |
| 6090 | 'bool', |
| 6091 | [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')], |
| 6092 | is_const=True, is_virtual=True) |
| 6093 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsForwarding(uint32_t i) const [member function] |
| 6094 | cls.add_method('IsForwarding', |
| 6095 | 'bool', |
| 6096 | [param('uint32_t', 'i')], |
| 6097 | is_const=True, is_virtual=True) |
| 6098 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsUp(uint32_t i) const [member function] |
| 6099 | cls.add_method('IsUp', |
| 6100 | 'bool', |
| 6101 | [param('uint32_t', 'i')], |
| 6102 | is_const=True, is_virtual=True) |
| 6103 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Receive(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] |
| 6104 | cls.add_method('Receive', |
| 6105 | 'void', |
| 6106 | [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')]) |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6107 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Remove(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function] |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6108 | cls.add_method('Remove', |
| 6109 | 'void', |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6110 | [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')]) |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6111 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::RemoveAddress(uint32_t interfaceIndex, uint32_t addressIndex) [member function] |
| 6112 | cls.add_method('RemoveAddress', |
| 6113 | 'bool', |
| 6114 | [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')], |
| 6115 | is_virtual=True) |
| 6116 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4L3Protocol::SelectSourceAddress(ns3::Ptr<const ns3::NetDevice> device, ns3::Ipv4Address dst, ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function] |
| 6117 | cls.add_method('SelectSourceAddress', |
| 6118 | 'ns3::Ipv4Address', |
| 6119 | [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')], |
| 6120 | is_virtual=True) |
| 6121 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol, ns3::Ptr<ns3::Ipv4Route> route) [member function] |
| 6122 | cls.add_method('Send', |
| 6123 | 'void', |
| 6124 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')], |
| 6125 | is_virtual=True) |
| 6126 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SendWithHeader(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Header ipHeader, ns3::Ptr<ns3::Ipv4Route> route) [member function] |
| 6127 | cls.add_method('SendWithHeader', |
| 6128 | 'void', |
| 6129 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Header', 'ipHeader'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')]) |
| 6130 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDefaultTtl(uint8_t ttl) [member function] |
| 6131 | cls.add_method('SetDefaultTtl', |
| 6132 | 'void', |
| 6133 | [param('uint8_t', 'ttl')]) |
| 6134 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDown(uint32_t i) [member function] |
| 6135 | cls.add_method('SetDown', |
| 6136 | 'void', |
| 6137 | [param('uint32_t', 'i')], |
| 6138 | is_virtual=True) |
| 6139 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetForwarding(uint32_t i, bool val) [member function] |
| 6140 | cls.add_method('SetForwarding', |
| 6141 | 'void', |
| 6142 | [param('uint32_t', 'i'), param('bool', 'val')], |
| 6143 | is_virtual=True) |
| 6144 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetMetric(uint32_t i, uint16_t metric) [member function] |
| 6145 | cls.add_method('SetMetric', |
| 6146 | 'void', |
| 6147 | [param('uint32_t', 'i'), param('uint16_t', 'metric')], |
| 6148 | is_virtual=True) |
| 6149 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 6150 | cls.add_method('SetNode', |
| 6151 | 'void', |
| 6152 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 6153 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function] |
| 6154 | cls.add_method('SetRoutingProtocol', |
| 6155 | 'void', |
| 6156 | [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')], |
| 6157 | is_virtual=True) |
| 6158 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetUp(uint32_t i) [member function] |
| 6159 | cls.add_method('SetUp', |
| 6160 | 'void', |
| 6161 | [param('uint32_t', 'i')], |
| 6162 | is_virtual=True) |
| 6163 | ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::PROT_NUMBER [variable] |
| 6164 | cls.add_static_attribute('PROT_NUMBER', 'uint16_t const', is_const=True) |
| 6165 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DoDispose() [member function] |
| 6166 | cls.add_method('DoDispose', |
| 6167 | 'void', |
| 6168 | [], |
| 6169 | visibility='protected', is_virtual=True) |
| 6170 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::NotifyNewAggregate() [member function] |
| 6171 | cls.add_method('NotifyNewAggregate', |
| 6172 | 'void', |
| 6173 | [], |
| 6174 | visibility='protected', is_virtual=True) |
| 6175 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetIpForward() const [member function] |
| 6176 | cls.add_method('GetIpForward', |
| 6177 | 'bool', |
| 6178 | [], |
| 6179 | is_const=True, visibility='private', is_virtual=True) |
| 6180 | ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetWeakEsModel() const [member function] |
| 6181 | cls.add_method('GetWeakEsModel', |
| 6182 | 'bool', |
| 6183 | [], |
| 6184 | is_const=True, visibility='private', is_virtual=True) |
| 6185 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetIpForward(bool forward) [member function] |
| 6186 | cls.add_method('SetIpForward', |
| 6187 | 'void', |
| 6188 | [param('bool', 'forward')], |
| 6189 | visibility='private', is_virtual=True) |
| 6190 | ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetWeakEsModel(bool model) [member function] |
| 6191 | cls.add_method('SetWeakEsModel', |
| 6192 | 'void', |
| 6193 | [param('bool', 'model')], |
| 6194 | visibility='private', is_virtual=True) |
| 6195 | return |
| 6196 | |
| 6197 | def register_Ns3Ipv4L3Tracer_methods(root_module, cls): |
| 6198 | cls.add_output_stream_operator() |
| 6199 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ipv4L3Tracer const & arg0) [copy constructor] |
| 6200 | cls.add_constructor([param('ns3::Ipv4L3Tracer const &', 'arg0')]) |
| 6201 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ptr<ns3::Node> node) [constructor] |
| 6202 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
| 6203 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Connect() [member function] |
| 6204 | cls.add_method('Connect', |
| 6205 | 'void', |
| 6206 | []) |
| 6207 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Drop(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ipv4L3Protocol::DropReason arg3, ns3::Ptr<ns3::Ipv4> arg4, uint32_t arg5) [member function] |
| 6208 | cls.add_method('Drop', |
| 6209 | 'void', |
| 6210 | [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ipv4L3Protocol::DropReason', 'arg3'), param('ns3::Ptr< ns3::Ipv4 >', 'arg4'), param('uint32_t', 'arg5')], |
| 6211 | is_pure_virtual=True, is_virtual=True) |
| 6212 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Print(std::ostream & os) const [member function] |
| 6213 | cls.add_method('Print', |
| 6214 | 'void', |
| 6215 | [param('std::ostream &', 'os')], |
| 6216 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6217 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::PrintHeader(std::ostream & os) const [member function] |
| 6218 | cls.add_method('PrintHeader', |
| 6219 | 'void', |
| 6220 | [param('std::ostream &', 'os')], |
| 6221 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6222 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Rx(std::string context, ns3::Ptr<const ns3::Packet> arg1, ns3::Ptr<ns3::Ipv4> arg2, uint32_t arg3) [member function] |
| 6223 | cls.add_method('Rx', |
| 6224 | 'void', |
| 6225 | [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')], |
| 6226 | is_pure_virtual=True, is_virtual=True) |
| 6227 | ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Tx(std::string context, ns3::Ptr<const ns3::Packet> arg1, ns3::Ptr<ns3::Ipv4> arg2, uint32_t arg3) [member function] |
| 6228 | cls.add_method('Tx', |
| 6229 | 'void', |
| 6230 | [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')], |
| 6231 | is_pure_virtual=True, is_virtual=True) |
| 6232 | return |
| 6233 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6234 | def register_Ns3Ipv4MaskChecker_methods(root_module, cls): |
| 6235 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor] |
| 6236 | cls.add_constructor([]) |
| 6237 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor] |
| 6238 | cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')]) |
| 6239 | return |
| 6240 | |
| 6241 | def register_Ns3Ipv4MaskValue_methods(root_module, cls): |
| 6242 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor] |
| 6243 | cls.add_constructor([]) |
| 6244 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor] |
| 6245 | cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')]) |
| 6246 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor] |
| 6247 | cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')]) |
| 6248 | ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function] |
| 6249 | cls.add_method('Copy', |
| 6250 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6251 | [], |
| 6252 | is_const=True, is_virtual=True) |
| 6253 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6254 | cls.add_method('DeserializeFromString', |
| 6255 | 'bool', |
| 6256 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6257 | is_virtual=True) |
| 6258 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function] |
| 6259 | cls.add_method('Get', |
| 6260 | 'ns3::Ipv4Mask', |
| 6261 | [], |
| 6262 | is_const=True) |
| 6263 | ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6264 | cls.add_method('SerializeToString', |
| 6265 | 'std::string', |
| 6266 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6267 | is_const=True, is_virtual=True) |
| 6268 | ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function] |
| 6269 | cls.add_method('Set', |
| 6270 | 'void', |
| 6271 | [param('ns3::Ipv4Mask const &', 'value')]) |
| 6272 | return |
| 6273 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 6274 | def register_Ns3Ipv4MulticastRoute_methods(root_module, cls): |
| 6275 | ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute(ns3::Ipv4MulticastRoute const & arg0) [copy constructor] |
| 6276 | cls.add_constructor([param('ns3::Ipv4MulticastRoute const &', 'arg0')]) |
| 6277 | ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute() [constructor] |
| 6278 | cls.add_constructor([]) |
| 6279 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetGroup() const [member function] |
| 6280 | cls.add_method('GetGroup', |
| 6281 | 'ns3::Ipv4Address', |
| 6282 | [], |
| 6283 | is_const=True) |
| 6284 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetOrigin() const [member function] |
| 6285 | cls.add_method('GetOrigin', |
| 6286 | 'ns3::Ipv4Address', |
| 6287 | [], |
| 6288 | is_const=True) |
| 6289 | ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetOutputTtl(uint32_t oif) [member function] |
| 6290 | cls.add_method('GetOutputTtl', |
| 6291 | 'uint32_t', |
| 6292 | [param('uint32_t', 'oif')], |
| 6293 | deprecated=True) |
| 6294 | ## ipv4-route.h (module 'internet'): std::map<unsigned int, unsigned int, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, unsigned int> > > ns3::Ipv4MulticastRoute::GetOutputTtlMap() const [member function] |
| 6295 | cls.add_method('GetOutputTtlMap', |
| 6296 | 'std::map< unsigned int, unsigned int >', |
| 6297 | [], |
| 6298 | is_const=True) |
| 6299 | ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetParent() const [member function] |
| 6300 | cls.add_method('GetParent', |
| 6301 | 'uint32_t', |
| 6302 | [], |
| 6303 | is_const=True) |
| 6304 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetGroup(ns3::Ipv4Address const group) [member function] |
| 6305 | cls.add_method('SetGroup', |
| 6306 | 'void', |
| 6307 | [param('ns3::Ipv4Address const', 'group')]) |
| 6308 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOrigin(ns3::Ipv4Address const origin) [member function] |
| 6309 | cls.add_method('SetOrigin', |
| 6310 | 'void', |
| 6311 | [param('ns3::Ipv4Address const', 'origin')]) |
| 6312 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOutputTtl(uint32_t oif, uint32_t ttl) [member function] |
| 6313 | cls.add_method('SetOutputTtl', |
| 6314 | 'void', |
| 6315 | [param('uint32_t', 'oif'), param('uint32_t', 'ttl')]) |
| 6316 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetParent(uint32_t iif) [member function] |
| 6317 | cls.add_method('SetParent', |
| 6318 | 'void', |
| 6319 | [param('uint32_t', 'iif')]) |
| 6320 | ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_INTERFACES [variable] |
| 6321 | cls.add_static_attribute('MAX_INTERFACES', 'uint32_t const', is_const=True) |
| 6322 | ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_TTL [variable] |
| 6323 | cls.add_static_attribute('MAX_TTL', 'uint32_t const', is_const=True) |
| 6324 | return |
| 6325 | |
| 6326 | def register_Ns3Ipv4Route_methods(root_module, cls): |
| 6327 | cls.add_output_stream_operator() |
| 6328 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route(ns3::Ipv4Route const & arg0) [copy constructor] |
| 6329 | cls.add_constructor([param('ns3::Ipv4Route const &', 'arg0')]) |
| 6330 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route() [constructor] |
| 6331 | cls.add_constructor([]) |
| 6332 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetDestination() const [member function] |
| 6333 | cls.add_method('GetDestination', |
| 6334 | 'ns3::Ipv4Address', |
| 6335 | [], |
| 6336 | is_const=True) |
| 6337 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetGateway() const [member function] |
| 6338 | cls.add_method('GetGateway', |
| 6339 | 'ns3::Ipv4Address', |
| 6340 | [], |
| 6341 | is_const=True) |
| 6342 | ## ipv4-route.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4Route::GetOutputDevice() const [member function] |
| 6343 | cls.add_method('GetOutputDevice', |
| 6344 | 'ns3::Ptr< ns3::NetDevice >', |
| 6345 | [], |
| 6346 | is_const=True) |
| 6347 | ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetSource() const [member function] |
| 6348 | cls.add_method('GetSource', |
| 6349 | 'ns3::Ipv4Address', |
| 6350 | [], |
| 6351 | is_const=True) |
| 6352 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetDestination(ns3::Ipv4Address dest) [member function] |
| 6353 | cls.add_method('SetDestination', |
| 6354 | 'void', |
| 6355 | [param('ns3::Ipv4Address', 'dest')]) |
| 6356 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetGateway(ns3::Ipv4Address gw) [member function] |
| 6357 | cls.add_method('SetGateway', |
| 6358 | 'void', |
| 6359 | [param('ns3::Ipv4Address', 'gw')]) |
| 6360 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetOutputDevice(ns3::Ptr<ns3::NetDevice> outputDevice) [member function] |
| 6361 | cls.add_method('SetOutputDevice', |
| 6362 | 'void', |
| 6363 | [param('ns3::Ptr< ns3::NetDevice >', 'outputDevice')]) |
| 6364 | ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetSource(ns3::Ipv4Address src) [member function] |
| 6365 | cls.add_method('SetSource', |
| 6366 | 'void', |
| 6367 | [param('ns3::Ipv4Address', 'src')]) |
| 6368 | return |
| 6369 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6370 | def register_Ns3Ipv4RoutingProtocol_methods(root_module, cls): |
| 6371 | ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol() [constructor] |
| 6372 | cls.add_constructor([]) |
| 6373 | ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol(ns3::Ipv4RoutingProtocol const & arg0) [copy constructor] |
| 6374 | cls.add_constructor([param('ns3::Ipv4RoutingProtocol const &', 'arg0')]) |
| 6375 | ## ipv4-routing-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4RoutingProtocol::GetTypeId() [member function] |
| 6376 | cls.add_method('GetTypeId', |
| 6377 | 'ns3::TypeId', |
| 6378 | [], |
| 6379 | is_static=True) |
| 6380 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function] |
| 6381 | cls.add_method('NotifyAddAddress', |
| 6382 | 'void', |
| 6383 | [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], |
| 6384 | is_pure_virtual=True, is_virtual=True) |
| 6385 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceDown(uint32_t interface) [member function] |
| 6386 | cls.add_method('NotifyInterfaceDown', |
| 6387 | 'void', |
| 6388 | [param('uint32_t', 'interface')], |
| 6389 | is_pure_virtual=True, is_virtual=True) |
| 6390 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceUp(uint32_t interface) [member function] |
| 6391 | cls.add_method('NotifyInterfaceUp', |
| 6392 | 'void', |
| 6393 | [param('uint32_t', 'interface')], |
| 6394 | is_pure_virtual=True, is_virtual=True) |
| 6395 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function] |
| 6396 | cls.add_method('NotifyRemoveAddress', |
| 6397 | 'void', |
| 6398 | [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], |
| 6399 | is_pure_virtual=True, is_virtual=True) |
| 6400 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 6401 | cls.add_method('PrintRoutingTable', |
| 6402 | 'void', |
| 6403 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 6404 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6405 | ## ipv4-routing-protocol.h (module 'internet'): bool ns3::Ipv4RoutingProtocol::RouteInput(ns3::Ptr<const ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function] |
| 6406 | cls.add_method('RouteInput', |
| 6407 | 'bool', |
| 6408 | [param('ns3::Ptr< ns3::Packet const >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice const >', 'idev'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'mcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'lcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')], |
| 6409 | is_pure_virtual=True, is_virtual=True) |
| 6410 | ## ipv4-routing-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4RoutingProtocol::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function] |
| 6411 | cls.add_method('RouteOutput', |
| 6412 | 'ns3::Ptr< ns3::Ipv4Route >', |
| 6413 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')], |
| 6414 | is_pure_virtual=True, is_virtual=True) |
| 6415 | ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function] |
| 6416 | cls.add_method('SetIpv4', |
| 6417 | 'void', |
| 6418 | [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], |
| 6419 | is_pure_virtual=True, is_virtual=True) |
| 6420 | return |
| 6421 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6422 | def register_Ns3Ipv6AddressChecker_methods(root_module, cls): |
| 6423 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor] |
| 6424 | cls.add_constructor([]) |
| 6425 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor] |
| 6426 | cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')]) |
| 6427 | return |
| 6428 | |
| 6429 | def register_Ns3Ipv6AddressValue_methods(root_module, cls): |
| 6430 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor] |
| 6431 | cls.add_constructor([]) |
| 6432 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor] |
| 6433 | cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')]) |
| 6434 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor] |
| 6435 | cls.add_constructor([param('ns3::Ipv6Address const &', 'value')]) |
| 6436 | ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function] |
| 6437 | cls.add_method('Copy', |
| 6438 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6439 | [], |
| 6440 | is_const=True, is_virtual=True) |
| 6441 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6442 | cls.add_method('DeserializeFromString', |
| 6443 | 'bool', |
| 6444 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6445 | is_virtual=True) |
| 6446 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function] |
| 6447 | cls.add_method('Get', |
| 6448 | 'ns3::Ipv6Address', |
| 6449 | [], |
| 6450 | is_const=True) |
| 6451 | ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6452 | cls.add_method('SerializeToString', |
| 6453 | 'std::string', |
| 6454 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6455 | is_const=True, is_virtual=True) |
| 6456 | ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function] |
| 6457 | cls.add_method('Set', |
| 6458 | 'void', |
| 6459 | [param('ns3::Ipv6Address const &', 'value')]) |
| 6460 | return |
| 6461 | |
Alexander Afanasyev | 6f93353 | 2012-02-29 13:30:37 -0800 | [diff] [blame] | 6462 | def register_Ns3Ipv6Interface_methods(root_module, cls): |
| 6463 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface(ns3::Ipv6Interface const & arg0) [copy constructor] |
| 6464 | cls.add_constructor([param('ns3::Ipv6Interface const &', 'arg0')]) |
| 6465 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface() [constructor] |
| 6466 | cls.add_constructor([]) |
| 6467 | ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::AddAddress(ns3::Ipv6InterfaceAddress iface) [member function] |
| 6468 | cls.add_method('AddAddress', |
| 6469 | 'bool', |
| 6470 | [param('ns3::Ipv6InterfaceAddress', 'iface')]) |
| 6471 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddress(uint32_t index) const [member function] |
| 6472 | cls.add_method('GetAddress', |
| 6473 | 'ns3::Ipv6InterfaceAddress', |
| 6474 | [param('uint32_t', 'index')], |
| 6475 | is_const=True) |
| 6476 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddressMatchingDestination(ns3::Ipv6Address dst) [member function] |
| 6477 | cls.add_method('GetAddressMatchingDestination', |
| 6478 | 'ns3::Ipv6InterfaceAddress', |
| 6479 | [param('ns3::Ipv6Address', 'dst')]) |
| 6480 | ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetBaseReachableTime() const [member function] |
| 6481 | cls.add_method('GetBaseReachableTime', |
| 6482 | 'uint16_t', |
| 6483 | [], |
| 6484 | is_const=True) |
| 6485 | ## ipv6-interface.h (module 'internet'): uint8_t ns3::Ipv6Interface::GetCurHopLimit() const [member function] |
| 6486 | cls.add_method('GetCurHopLimit', |
| 6487 | 'uint8_t', |
| 6488 | [], |
| 6489 | is_const=True) |
| 6490 | ## ipv6-interface.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv6Interface::GetDevice() const [member function] |
| 6491 | cls.add_method('GetDevice', |
| 6492 | 'ns3::Ptr< ns3::NetDevice >', |
| 6493 | [], |
| 6494 | is_const=True, is_virtual=True) |
| 6495 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetLinkLocalAddress() const [member function] |
| 6496 | cls.add_method('GetLinkLocalAddress', |
| 6497 | 'ns3::Ipv6InterfaceAddress', |
| 6498 | [], |
| 6499 | is_const=True) |
| 6500 | ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetMetric() const [member function] |
| 6501 | cls.add_method('GetMetric', |
| 6502 | 'uint16_t', |
| 6503 | [], |
| 6504 | is_const=True) |
| 6505 | ## ipv6-interface.h (module 'internet'): uint32_t ns3::Ipv6Interface::GetNAddresses() const [member function] |
| 6506 | cls.add_method('GetNAddresses', |
| 6507 | 'uint32_t', |
| 6508 | [], |
| 6509 | is_const=True) |
| 6510 | ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetReachableTime() const [member function] |
| 6511 | cls.add_method('GetReachableTime', |
| 6512 | 'uint16_t', |
| 6513 | [], |
| 6514 | is_const=True) |
| 6515 | ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetRetransTimer() const [member function] |
| 6516 | cls.add_method('GetRetransTimer', |
| 6517 | 'uint16_t', |
| 6518 | [], |
| 6519 | is_const=True) |
| 6520 | ## ipv6-interface.h (module 'internet'): static ns3::TypeId ns3::Ipv6Interface::GetTypeId() [member function] |
| 6521 | cls.add_method('GetTypeId', |
| 6522 | 'ns3::TypeId', |
| 6523 | [], |
| 6524 | is_static=True) |
| 6525 | ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsDown() const [member function] |
| 6526 | cls.add_method('IsDown', |
| 6527 | 'bool', |
| 6528 | [], |
| 6529 | is_const=True) |
| 6530 | ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsForwarding() const [member function] |
| 6531 | cls.add_method('IsForwarding', |
| 6532 | 'bool', |
| 6533 | [], |
| 6534 | is_const=True) |
| 6535 | ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsUp() const [member function] |
| 6536 | cls.add_method('IsUp', |
| 6537 | 'bool', |
| 6538 | [], |
| 6539 | is_const=True) |
| 6540 | ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress(uint32_t index) [member function] |
| 6541 | cls.add_method('RemoveAddress', |
| 6542 | 'ns3::Ipv6InterfaceAddress', |
| 6543 | [param('uint32_t', 'index')]) |
| 6544 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::Send(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address dest) [member function] |
| 6545 | cls.add_method('Send', |
| 6546 | 'void', |
| 6547 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address', 'dest')]) |
| 6548 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetBaseReachableTime(uint16_t baseReachableTime) [member function] |
| 6549 | cls.add_method('SetBaseReachableTime', |
| 6550 | 'void', |
| 6551 | [param('uint16_t', 'baseReachableTime')]) |
| 6552 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetCurHopLimit(uint8_t curHopLimit) [member function] |
| 6553 | cls.add_method('SetCurHopLimit', |
| 6554 | 'void', |
| 6555 | [param('uint8_t', 'curHopLimit')]) |
| 6556 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 6557 | cls.add_method('SetDevice', |
| 6558 | 'void', |
| 6559 | [param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
| 6560 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDown() [member function] |
| 6561 | cls.add_method('SetDown', |
| 6562 | 'void', |
| 6563 | []) |
| 6564 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetForwarding(bool forward) [member function] |
| 6565 | cls.add_method('SetForwarding', |
| 6566 | 'void', |
| 6567 | [param('bool', 'forward')]) |
| 6568 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetMetric(uint16_t metric) [member function] |
| 6569 | cls.add_method('SetMetric', |
| 6570 | 'void', |
| 6571 | [param('uint16_t', 'metric')]) |
| 6572 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 6573 | cls.add_method('SetNode', |
| 6574 | 'void', |
| 6575 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 6576 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNsDadUid(ns3::Ipv6Address address, uint32_t uid) [member function] |
| 6577 | cls.add_method('SetNsDadUid', |
| 6578 | 'void', |
| 6579 | [param('ns3::Ipv6Address', 'address'), param('uint32_t', 'uid')]) |
| 6580 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetReachableTime(uint16_t reachableTime) [member function] |
| 6581 | cls.add_method('SetReachableTime', |
| 6582 | 'void', |
| 6583 | [param('uint16_t', 'reachableTime')]) |
| 6584 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetRetransTimer(uint16_t retransTimer) [member function] |
| 6585 | cls.add_method('SetRetransTimer', |
| 6586 | 'void', |
| 6587 | [param('uint16_t', 'retransTimer')]) |
| 6588 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetState(ns3::Ipv6Address address, ns3::Ipv6InterfaceAddress::State_e state) [member function] |
| 6589 | cls.add_method('SetState', |
| 6590 | 'void', |
| 6591 | [param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6InterfaceAddress::State_e', 'state')]) |
| 6592 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetUp() [member function] |
| 6593 | cls.add_method('SetUp', |
| 6594 | 'void', |
| 6595 | []) |
| 6596 | ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::DoDispose() [member function] |
| 6597 | cls.add_method('DoDispose', |
| 6598 | 'void', |
| 6599 | [], |
| 6600 | visibility='protected', is_virtual=True) |
| 6601 | return |
| 6602 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6603 | def register_Ns3Ipv6PrefixChecker_methods(root_module, cls): |
| 6604 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor] |
| 6605 | cls.add_constructor([]) |
| 6606 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor] |
| 6607 | cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')]) |
| 6608 | return |
| 6609 | |
| 6610 | def register_Ns3Ipv6PrefixValue_methods(root_module, cls): |
| 6611 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor] |
| 6612 | cls.add_constructor([]) |
| 6613 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor] |
| 6614 | cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')]) |
| 6615 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor] |
| 6616 | cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')]) |
| 6617 | ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function] |
| 6618 | cls.add_method('Copy', |
| 6619 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6620 | [], |
| 6621 | is_const=True, is_virtual=True) |
| 6622 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6623 | cls.add_method('DeserializeFromString', |
| 6624 | 'bool', |
| 6625 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6626 | is_virtual=True) |
| 6627 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function] |
| 6628 | cls.add_method('Get', |
| 6629 | 'ns3::Ipv6Prefix', |
| 6630 | [], |
| 6631 | is_const=True) |
| 6632 | ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6633 | cls.add_method('SerializeToString', |
| 6634 | 'std::string', |
| 6635 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6636 | is_const=True, is_virtual=True) |
| 6637 | ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function] |
| 6638 | cls.add_method('Set', |
| 6639 | 'void', |
| 6640 | [param('ns3::Ipv6Prefix const &', 'value')]) |
| 6641 | return |
| 6642 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 6643 | def register_Ns3MobilityModel_methods(root_module, cls): |
| 6644 | ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor] |
| 6645 | cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')]) |
| 6646 | ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor] |
| 6647 | cls.add_constructor([]) |
| 6648 | ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function] |
| 6649 | cls.add_method('GetDistanceFrom', |
| 6650 | 'double', |
| 6651 | [param('ns3::Ptr< ns3::MobilityModel const >', 'position')], |
| 6652 | is_const=True) |
| 6653 | ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function] |
| 6654 | cls.add_method('GetPosition', |
| 6655 | 'ns3::Vector', |
| 6656 | [], |
| 6657 | is_const=True) |
| 6658 | ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function] |
| 6659 | cls.add_method('GetRelativeSpeed', |
| 6660 | 'double', |
| 6661 | [param('ns3::Ptr< ns3::MobilityModel const >', 'other')], |
| 6662 | is_const=True) |
| 6663 | ## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function] |
| 6664 | cls.add_method('GetTypeId', |
| 6665 | 'ns3::TypeId', |
| 6666 | [], |
| 6667 | is_static=True) |
| 6668 | ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function] |
| 6669 | cls.add_method('GetVelocity', |
| 6670 | 'ns3::Vector', |
| 6671 | [], |
| 6672 | is_const=True) |
| 6673 | ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function] |
| 6674 | cls.add_method('SetPosition', |
| 6675 | 'void', |
| 6676 | [param('ns3::Vector const &', 'position')]) |
| 6677 | ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function] |
| 6678 | cls.add_method('NotifyCourseChange', |
| 6679 | 'void', |
| 6680 | [], |
| 6681 | is_const=True, visibility='protected') |
| 6682 | ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function] |
| 6683 | cls.add_method('DoGetPosition', |
| 6684 | 'ns3::Vector', |
| 6685 | [], |
| 6686 | is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
| 6687 | ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function] |
| 6688 | cls.add_method('DoGetVelocity', |
| 6689 | 'ns3::Vector', |
| 6690 | [], |
| 6691 | is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
| 6692 | ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function] |
| 6693 | cls.add_method('DoSetPosition', |
| 6694 | 'void', |
| 6695 | [param('ns3::Vector const &', 'position')], |
| 6696 | is_pure_virtual=True, visibility='private', is_virtual=True) |
| 6697 | return |
| 6698 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6699 | def register_Ns3NetDevice_methods(root_module, cls): |
| 6700 | ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor] |
| 6701 | cls.add_constructor([]) |
| 6702 | ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor] |
| 6703 | cls.add_constructor([param('ns3::NetDevice const &', 'arg0')]) |
| 6704 | ## 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] |
| 6705 | cls.add_method('AddLinkChangeCallback', |
| 6706 | 'void', |
| 6707 | [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
| 6708 | is_pure_virtual=True, is_virtual=True) |
| 6709 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function] |
| 6710 | cls.add_method('GetAddress', |
| 6711 | 'ns3::Address', |
| 6712 | [], |
| 6713 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6714 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function] |
| 6715 | cls.add_method('GetBroadcast', |
| 6716 | 'ns3::Address', |
| 6717 | [], |
| 6718 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6719 | ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function] |
| 6720 | cls.add_method('GetChannel', |
| 6721 | 'ns3::Ptr< ns3::Channel >', |
| 6722 | [], |
| 6723 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6724 | ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function] |
| 6725 | cls.add_method('GetIfIndex', |
| 6726 | 'uint32_t', |
| 6727 | [], |
| 6728 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6729 | ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function] |
| 6730 | cls.add_method('GetMtu', |
| 6731 | 'uint16_t', |
| 6732 | [], |
| 6733 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6734 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
| 6735 | cls.add_method('GetMulticast', |
| 6736 | 'ns3::Address', |
| 6737 | [param('ns3::Ipv4Address', 'multicastGroup')], |
| 6738 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6739 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
| 6740 | cls.add_method('GetMulticast', |
| 6741 | 'ns3::Address', |
| 6742 | [param('ns3::Ipv6Address', 'addr')], |
| 6743 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6744 | ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function] |
| 6745 | cls.add_method('GetNode', |
| 6746 | 'ns3::Ptr< ns3::Node >', |
| 6747 | [], |
| 6748 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6749 | ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function] |
| 6750 | cls.add_method('GetTypeId', |
| 6751 | 'ns3::TypeId', |
| 6752 | [], |
| 6753 | is_static=True) |
| 6754 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function] |
| 6755 | cls.add_method('IsBridge', |
| 6756 | 'bool', |
| 6757 | [], |
| 6758 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6759 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function] |
| 6760 | cls.add_method('IsBroadcast', |
| 6761 | 'bool', |
| 6762 | [], |
| 6763 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6764 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function] |
| 6765 | cls.add_method('IsLinkUp', |
| 6766 | 'bool', |
| 6767 | [], |
| 6768 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6769 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function] |
| 6770 | cls.add_method('IsMulticast', |
| 6771 | 'bool', |
| 6772 | [], |
| 6773 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6774 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function] |
| 6775 | cls.add_method('IsPointToPoint', |
| 6776 | 'bool', |
| 6777 | [], |
| 6778 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6779 | ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function] |
| 6780 | cls.add_method('NeedsArp', |
| 6781 | 'bool', |
| 6782 | [], |
| 6783 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6784 | ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
| 6785 | cls.add_method('Send', |
| 6786 | 'bool', |
| 6787 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 6788 | is_pure_virtual=True, is_virtual=True) |
| 6789 | ## 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] |
| 6790 | cls.add_method('SendFrom', |
| 6791 | 'bool', |
| 6792 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 6793 | is_pure_virtual=True, is_virtual=True) |
| 6794 | ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function] |
| 6795 | cls.add_method('SetAddress', |
| 6796 | 'void', |
| 6797 | [param('ns3::Address', 'address')], |
| 6798 | is_pure_virtual=True, is_virtual=True) |
| 6799 | ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function] |
| 6800 | cls.add_method('SetIfIndex', |
| 6801 | 'void', |
| 6802 | [param('uint32_t const', 'index')], |
| 6803 | is_pure_virtual=True, is_virtual=True) |
| 6804 | ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function] |
| 6805 | cls.add_method('SetMtu', |
| 6806 | 'bool', |
| 6807 | [param('uint16_t const', 'mtu')], |
| 6808 | is_pure_virtual=True, is_virtual=True) |
| 6809 | ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 6810 | cls.add_method('SetNode', |
| 6811 | 'void', |
| 6812 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 6813 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 6814 | ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6815 | cls.add_method('SetPromiscReceiveCallback', |
| 6816 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 6817 | [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6818 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 6819 | ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6820 | cls.add_method('SetReceiveCallback', |
| 6821 | 'void', |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 6822 | [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 6823 | is_pure_virtual=True, is_virtual=True) |
| 6824 | ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function] |
| 6825 | cls.add_method('SupportsSendFrom', |
| 6826 | 'bool', |
| 6827 | [], |
| 6828 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6829 | return |
| 6830 | |
| 6831 | def register_Ns3NixVector_methods(root_module, cls): |
| 6832 | cls.add_output_stream_operator() |
| 6833 | ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor] |
| 6834 | cls.add_constructor([]) |
| 6835 | ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor] |
| 6836 | cls.add_constructor([param('ns3::NixVector const &', 'o')]) |
| 6837 | ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function] |
| 6838 | cls.add_method('AddNeighborIndex', |
| 6839 | 'void', |
| 6840 | [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')]) |
| 6841 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function] |
| 6842 | cls.add_method('BitCount', |
| 6843 | 'uint32_t', |
| 6844 | [param('uint32_t', 'numberOfNeighbors')], |
| 6845 | is_const=True) |
| 6846 | ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function] |
| 6847 | cls.add_method('Copy', |
| 6848 | 'ns3::Ptr< ns3::NixVector >', |
| 6849 | [], |
| 6850 | is_const=True) |
| 6851 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function] |
| 6852 | cls.add_method('Deserialize', |
| 6853 | 'uint32_t', |
| 6854 | [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 6855 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function] |
| 6856 | cls.add_method('ExtractNeighborIndex', |
| 6857 | 'uint32_t', |
| 6858 | [param('uint32_t', 'numberOfBits')]) |
| 6859 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function] |
| 6860 | cls.add_method('GetRemainingBits', |
| 6861 | 'uint32_t', |
| 6862 | []) |
| 6863 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function] |
| 6864 | cls.add_method('GetSerializedSize', |
| 6865 | 'uint32_t', |
| 6866 | [], |
| 6867 | is_const=True) |
| 6868 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function] |
| 6869 | cls.add_method('Serialize', |
| 6870 | 'uint32_t', |
| 6871 | [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 6872 | is_const=True) |
| 6873 | return |
| 6874 | |
| 6875 | def register_Ns3Node_methods(root_module, cls): |
| 6876 | ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor] |
| 6877 | cls.add_constructor([param('ns3::Node const &', 'arg0')]) |
| 6878 | ## node.h (module 'network'): ns3::Node::Node() [constructor] |
| 6879 | cls.add_constructor([]) |
| 6880 | ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor] |
| 6881 | cls.add_constructor([param('uint32_t', 'systemId')]) |
| 6882 | ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function] |
| 6883 | cls.add_method('AddApplication', |
| 6884 | 'uint32_t', |
| 6885 | [param('ns3::Ptr< ns3::Application >', 'application')]) |
| 6886 | ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 6887 | cls.add_method('AddDevice', |
| 6888 | 'uint32_t', |
| 6889 | [param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
| 6890 | ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function] |
| 6891 | cls.add_method('ChecksumEnabled', |
| 6892 | 'bool', |
| 6893 | [], |
| 6894 | is_static=True) |
| 6895 | ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function] |
| 6896 | cls.add_method('GetApplication', |
| 6897 | 'ns3::Ptr< ns3::Application >', |
| 6898 | [param('uint32_t', 'index')], |
| 6899 | is_const=True) |
| 6900 | ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function] |
| 6901 | cls.add_method('GetDevice', |
| 6902 | 'ns3::Ptr< ns3::NetDevice >', |
| 6903 | [param('uint32_t', 'index')], |
| 6904 | is_const=True) |
| 6905 | ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function] |
| 6906 | cls.add_method('GetId', |
| 6907 | 'uint32_t', |
| 6908 | [], |
| 6909 | is_const=True) |
| 6910 | ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function] |
| 6911 | cls.add_method('GetNApplications', |
| 6912 | 'uint32_t', |
| 6913 | [], |
| 6914 | is_const=True) |
| 6915 | ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function] |
| 6916 | cls.add_method('GetNDevices', |
| 6917 | 'uint32_t', |
| 6918 | [], |
| 6919 | is_const=True) |
| 6920 | ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function] |
| 6921 | cls.add_method('GetSystemId', |
| 6922 | 'uint32_t', |
| 6923 | [], |
| 6924 | is_const=True) |
| 6925 | ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function] |
| 6926 | cls.add_method('GetTypeId', |
| 6927 | 'ns3::TypeId', |
| 6928 | [], |
| 6929 | is_static=True) |
| 6930 | ## 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] |
| 6931 | cls.add_method('RegisterDeviceAdditionListener', |
| 6932 | 'void', |
| 6933 | [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')]) |
| 6934 | ## 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] |
| 6935 | cls.add_method('RegisterProtocolHandler', |
| 6936 | 'void', |
| 6937 | [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')]) |
| 6938 | ## 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] |
| 6939 | cls.add_method('UnregisterDeviceAdditionListener', |
| 6940 | 'void', |
| 6941 | [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')]) |
| 6942 | ## 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] |
| 6943 | cls.add_method('UnregisterProtocolHandler', |
| 6944 | 'void', |
| 6945 | [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')]) |
| 6946 | ## node.h (module 'network'): void ns3::Node::DoDispose() [member function] |
| 6947 | cls.add_method('DoDispose', |
| 6948 | 'void', |
| 6949 | [], |
| 6950 | visibility='protected', is_virtual=True) |
| 6951 | ## node.h (module 'network'): void ns3::Node::DoStart() [member function] |
| 6952 | cls.add_method('DoStart', |
| 6953 | 'void', |
| 6954 | [], |
| 6955 | visibility='protected', is_virtual=True) |
| 6956 | return |
| 6957 | |
| 6958 | def register_Ns3ObjectFactoryChecker_methods(root_module, cls): |
| 6959 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor] |
| 6960 | cls.add_constructor([]) |
| 6961 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor] |
| 6962 | cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')]) |
| 6963 | return |
| 6964 | |
| 6965 | def register_Ns3ObjectFactoryValue_methods(root_module, cls): |
| 6966 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor] |
| 6967 | cls.add_constructor([]) |
| 6968 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor] |
| 6969 | cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')]) |
| 6970 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor] |
| 6971 | cls.add_constructor([param('ns3::ObjectFactory const &', 'value')]) |
| 6972 | ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function] |
| 6973 | cls.add_method('Copy', |
| 6974 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6975 | [], |
| 6976 | is_const=True, is_virtual=True) |
| 6977 | ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6978 | cls.add_method('DeserializeFromString', |
| 6979 | 'bool', |
| 6980 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6981 | is_virtual=True) |
| 6982 | ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function] |
| 6983 | cls.add_method('Get', |
| 6984 | 'ns3::ObjectFactory', |
| 6985 | [], |
| 6986 | is_const=True) |
| 6987 | ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6988 | cls.add_method('SerializeToString', |
| 6989 | 'std::string', |
| 6990 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6991 | is_const=True, is_virtual=True) |
| 6992 | ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function] |
| 6993 | cls.add_method('Set', |
| 6994 | 'void', |
| 6995 | [param('ns3::ObjectFactory const &', 'value')]) |
| 6996 | return |
| 6997 | |
Alexander Afanasyev | 03d92e4 | 2012-02-01 21:06:53 -0800 | [diff] [blame] | 6998 | def register_Ns3OutputStreamWrapper_methods(root_module, cls): |
| 6999 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor] |
| 7000 | cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')]) |
| 7001 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor] |
| 7002 | cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')]) |
| 7003 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor] |
| 7004 | cls.add_constructor([param('std::ostream *', 'os')]) |
| 7005 | ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function] |
| 7006 | cls.add_method('GetStream', |
| 7007 | 'std::ostream *', |
| 7008 | []) |
| 7009 | return |
| 7010 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7011 | def register_Ns3Packet_methods(root_module, cls): |
| 7012 | cls.add_output_stream_operator() |
| 7013 | ## packet.h (module 'network'): ns3::Packet::Packet() [constructor] |
| 7014 | cls.add_constructor([]) |
| 7015 | ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor] |
| 7016 | cls.add_constructor([param('ns3::Packet const &', 'o')]) |
| 7017 | ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor] |
| 7018 | cls.add_constructor([param('uint32_t', 'size')]) |
| 7019 | ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor] |
| 7020 | cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')]) |
| 7021 | ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor] |
| 7022 | cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 7023 | ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7024 | cls.add_method('AddAtEnd', |
| 7025 | 'void', |
| 7026 | [param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
| 7027 | ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function] |
| 7028 | cls.add_method('AddByteTag', |
| 7029 | 'void', |
| 7030 | [param('ns3::Tag const &', 'tag')], |
| 7031 | is_const=True) |
| 7032 | ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function] |
| 7033 | cls.add_method('AddHeader', |
| 7034 | 'void', |
| 7035 | [param('ns3::Header const &', 'header')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7036 | ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Ptr<const ns3::Tag> tag) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7037 | cls.add_method('AddPacketTag', |
| 7038 | 'void', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7039 | [param('ns3::Ptr< ns3::Tag const >', 'tag')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7040 | ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function] |
| 7041 | cls.add_method('AddPaddingAtEnd', |
| 7042 | 'void', |
| 7043 | [param('uint32_t', 'size')]) |
| 7044 | ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function] |
| 7045 | cls.add_method('AddTrailer', |
| 7046 | 'void', |
| 7047 | [param('ns3::Trailer const &', 'trailer')]) |
| 7048 | ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function] |
| 7049 | cls.add_method('BeginItem', |
| 7050 | 'ns3::PacketMetadata::ItemIterator', |
| 7051 | [], |
| 7052 | is_const=True) |
| 7053 | ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function] |
| 7054 | cls.add_method('Copy', |
| 7055 | 'ns3::Ptr< ns3::Packet >', |
| 7056 | [], |
| 7057 | is_const=True) |
| 7058 | ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function] |
| 7059 | cls.add_method('CopyData', |
| 7060 | 'uint32_t', |
| 7061 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], |
| 7062 | is_const=True) |
| 7063 | ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function] |
| 7064 | cls.add_method('CopyData', |
| 7065 | 'void', |
| 7066 | [param('std::ostream *', 'os'), param('uint32_t', 'size')], |
| 7067 | is_const=True) |
| 7068 | ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function] |
| 7069 | cls.add_method('CreateFragment', |
| 7070 | 'ns3::Ptr< ns3::Packet >', |
| 7071 | [param('uint32_t', 'start'), param('uint32_t', 'length')], |
| 7072 | is_const=True) |
| 7073 | ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function] |
| 7074 | cls.add_method('EnableChecking', |
| 7075 | 'void', |
| 7076 | [], |
| 7077 | is_static=True) |
| 7078 | ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function] |
| 7079 | cls.add_method('EnablePrinting', |
| 7080 | 'void', |
| 7081 | [], |
| 7082 | is_static=True) |
| 7083 | ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function] |
| 7084 | cls.add_method('FindFirstMatchingByteTag', |
| 7085 | 'bool', |
| 7086 | [param('ns3::Tag &', 'tag')], |
| 7087 | is_const=True) |
| 7088 | ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function] |
| 7089 | cls.add_method('GetByteTagIterator', |
| 7090 | 'ns3::ByteTagIterator', |
| 7091 | [], |
| 7092 | is_const=True) |
| 7093 | ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function] |
| 7094 | cls.add_method('GetNixVector', |
| 7095 | 'ns3::Ptr< ns3::NixVector >', |
| 7096 | [], |
| 7097 | is_const=True) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7098 | ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function] |
| 7099 | cls.add_method('GetSerializedSize', |
| 7100 | 'uint32_t', |
| 7101 | [], |
| 7102 | is_const=True) |
| 7103 | ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function] |
| 7104 | cls.add_method('GetSize', |
| 7105 | 'uint32_t', |
| 7106 | [], |
| 7107 | is_const=True) |
| 7108 | ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function] |
| 7109 | cls.add_method('GetUid', |
| 7110 | 'uint64_t', |
| 7111 | [], |
| 7112 | is_const=True) |
| 7113 | ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function] |
| 7114 | cls.add_method('PeekData', |
| 7115 | 'uint8_t const *', |
| 7116 | [], |
| 7117 | deprecated=True, is_const=True) |
| 7118 | ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function] |
| 7119 | cls.add_method('PeekHeader', |
| 7120 | 'uint32_t', |
| 7121 | [param('ns3::Header &', 'header')], |
| 7122 | is_const=True) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7123 | ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::PeekPacketTag(ns3::TypeId tagType) const [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7124 | cls.add_method('PeekPacketTag', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7125 | 'ns3::Ptr< ns3::Tag const >', |
| 7126 | [param('ns3::TypeId', 'tagType')], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7127 | is_const=True) |
| 7128 | ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function] |
| 7129 | cls.add_method('PeekTrailer', |
| 7130 | 'uint32_t', |
| 7131 | [param('ns3::Trailer &', 'trailer')]) |
| 7132 | ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function] |
| 7133 | cls.add_method('Print', |
| 7134 | 'void', |
| 7135 | [param('std::ostream &', 'os')], |
| 7136 | is_const=True) |
| 7137 | ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function] |
| 7138 | cls.add_method('PrintByteTags', |
| 7139 | 'void', |
| 7140 | [param('std::ostream &', 'os')], |
| 7141 | is_const=True) |
| 7142 | ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function] |
| 7143 | cls.add_method('PrintPacketTags', |
| 7144 | 'void', |
| 7145 | [param('std::ostream &', 'os')], |
| 7146 | is_const=True) |
| 7147 | ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function] |
| 7148 | cls.add_method('RemoveAllByteTags', |
| 7149 | 'void', |
| 7150 | []) |
| 7151 | ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function] |
| 7152 | cls.add_method('RemoveAllPacketTags', |
| 7153 | 'void', |
| 7154 | []) |
| 7155 | ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function] |
| 7156 | cls.add_method('RemoveAtEnd', |
| 7157 | 'void', |
| 7158 | [param('uint32_t', 'size')]) |
| 7159 | ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function] |
| 7160 | cls.add_method('RemoveAtStart', |
| 7161 | 'void', |
| 7162 | [param('uint32_t', 'size')]) |
| 7163 | ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function] |
| 7164 | cls.add_method('RemoveHeader', |
| 7165 | 'uint32_t', |
| 7166 | [param('ns3::Header &', 'header')]) |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7167 | ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::RemovePacketTag(ns3::TypeId tagType) [member function] |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7168 | cls.add_method('RemovePacketTag', |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7169 | 'ns3::Ptr< ns3::Tag const >', |
| 7170 | [param('ns3::TypeId', 'tagType')]) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7171 | ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function] |
| 7172 | cls.add_method('RemoveTrailer', |
| 7173 | 'uint32_t', |
| 7174 | [param('ns3::Trailer &', 'trailer')]) |
| 7175 | ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 7176 | cls.add_method('Serialize', |
| 7177 | 'uint32_t', |
| 7178 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 7179 | is_const=True) |
| 7180 | ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function] |
| 7181 | cls.add_method('SetNixVector', |
| 7182 | 'void', |
| 7183 | [param('ns3::Ptr< ns3::NixVector >', 'arg0')]) |
| 7184 | return |
| 7185 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7186 | def register_Ns3RandomVariableChecker_methods(root_module, cls): |
| 7187 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor] |
| 7188 | cls.add_constructor([]) |
| 7189 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor] |
| 7190 | cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')]) |
| 7191 | return |
| 7192 | |
| 7193 | def register_Ns3RandomVariableValue_methods(root_module, cls): |
| 7194 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor] |
| 7195 | cls.add_constructor([]) |
| 7196 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor] |
| 7197 | cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')]) |
| 7198 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor] |
| 7199 | cls.add_constructor([param('ns3::RandomVariable const &', 'value')]) |
| 7200 | ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function] |
| 7201 | cls.add_method('Copy', |
| 7202 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7203 | [], |
| 7204 | is_const=True, is_virtual=True) |
| 7205 | ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7206 | cls.add_method('DeserializeFromString', |
| 7207 | 'bool', |
| 7208 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7209 | is_virtual=True) |
| 7210 | ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function] |
| 7211 | cls.add_method('Get', |
| 7212 | 'ns3::RandomVariable', |
| 7213 | [], |
| 7214 | is_const=True) |
| 7215 | ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7216 | cls.add_method('SerializeToString', |
| 7217 | 'std::string', |
| 7218 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7219 | is_const=True, is_virtual=True) |
| 7220 | ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function] |
| 7221 | cls.add_method('Set', |
| 7222 | 'void', |
| 7223 | [param('ns3::RandomVariable const &', 'value')]) |
| 7224 | return |
| 7225 | |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 7226 | def register_Ns3RocketfuelWeightsReader_methods(root_module, cls): |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 7227 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="") [constructor] |
| 7228 | cls.add_constructor([param('std::string const &', 'path', default_value='""')]) |
Alexander Afanasyev | ae3b7c3 | 2011-12-13 13:20:06 -0800 | [diff] [blame] | 7229 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function] |
| 7230 | cls.add_method('SetFileType', |
| 7231 | 'void', |
| 7232 | [param('uint8_t', 'inputType')]) |
Alexander Afanasyev | dd3eeec | 2011-12-13 13:19:15 -0800 | [diff] [blame] | 7233 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function] |
| 7234 | cls.add_method('Read', |
| 7235 | 'ns3::NodeContainer', |
| 7236 | [], |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7237 | is_virtual=True) |
Alexander Afanasyev | 53872ce | 2011-12-16 13:17:18 -0800 | [diff] [blame] | 7238 | ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::Commit() [member function] |
| 7239 | cls.add_method('Commit', |
| 7240 | 'void', |
| 7241 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7242 | return |
| 7243 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7244 | def register_Ns3SocketAddressTag_methods(root_module, cls): |
| 7245 | ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor] |
| 7246 | cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')]) |
| 7247 | ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor] |
| 7248 | cls.add_constructor([]) |
| 7249 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function] |
| 7250 | cls.add_method('Deserialize', |
| 7251 | 'void', |
| 7252 | [param('ns3::TagBuffer', 'i')], |
| 7253 | is_virtual=True) |
| 7254 | ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function] |
| 7255 | cls.add_method('GetAddress', |
| 7256 | 'ns3::Address', |
| 7257 | [], |
| 7258 | is_const=True) |
| 7259 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function] |
| 7260 | cls.add_method('GetInstanceTypeId', |
| 7261 | 'ns3::TypeId', |
| 7262 | [], |
| 7263 | is_const=True, is_virtual=True) |
| 7264 | ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function] |
| 7265 | cls.add_method('GetSerializedSize', |
| 7266 | 'uint32_t', |
| 7267 | [], |
| 7268 | is_const=True, is_virtual=True) |
| 7269 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function] |
| 7270 | cls.add_method('GetTypeId', |
| 7271 | 'ns3::TypeId', |
| 7272 | [], |
| 7273 | is_static=True) |
| 7274 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function] |
| 7275 | cls.add_method('Print', |
| 7276 | 'void', |
| 7277 | [param('std::ostream &', 'os')], |
| 7278 | is_const=True, is_virtual=True) |
| 7279 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function] |
| 7280 | cls.add_method('Serialize', |
| 7281 | 'void', |
| 7282 | [param('ns3::TagBuffer', 'i')], |
| 7283 | is_const=True, is_virtual=True) |
| 7284 | ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function] |
| 7285 | cls.add_method('SetAddress', |
| 7286 | 'void', |
| 7287 | [param('ns3::Address', 'addr')]) |
| 7288 | return |
| 7289 | |
| 7290 | def register_Ns3SocketIpTtlTag_methods(root_module, cls): |
| 7291 | ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor] |
| 7292 | cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')]) |
| 7293 | ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor] |
| 7294 | cls.add_constructor([]) |
| 7295 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function] |
| 7296 | cls.add_method('Deserialize', |
| 7297 | 'void', |
| 7298 | [param('ns3::TagBuffer', 'i')], |
| 7299 | is_virtual=True) |
| 7300 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function] |
| 7301 | cls.add_method('GetInstanceTypeId', |
| 7302 | 'ns3::TypeId', |
| 7303 | [], |
| 7304 | is_const=True, is_virtual=True) |
| 7305 | ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function] |
| 7306 | cls.add_method('GetSerializedSize', |
| 7307 | 'uint32_t', |
| 7308 | [], |
| 7309 | is_const=True, is_virtual=True) |
| 7310 | ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function] |
| 7311 | cls.add_method('GetTtl', |
| 7312 | 'uint8_t', |
| 7313 | [], |
| 7314 | is_const=True) |
| 7315 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function] |
| 7316 | cls.add_method('GetTypeId', |
| 7317 | 'ns3::TypeId', |
| 7318 | [], |
| 7319 | is_static=True) |
| 7320 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function] |
| 7321 | cls.add_method('Print', |
| 7322 | 'void', |
| 7323 | [param('std::ostream &', 'os')], |
| 7324 | is_const=True, is_virtual=True) |
| 7325 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function] |
| 7326 | cls.add_method('Serialize', |
| 7327 | 'void', |
| 7328 | [param('ns3::TagBuffer', 'i')], |
| 7329 | is_const=True, is_virtual=True) |
| 7330 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function] |
| 7331 | cls.add_method('SetTtl', |
| 7332 | 'void', |
| 7333 | [param('uint8_t', 'ttl')]) |
| 7334 | return |
| 7335 | |
| 7336 | def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls): |
| 7337 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor] |
| 7338 | cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')]) |
| 7339 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor] |
| 7340 | cls.add_constructor([]) |
| 7341 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function] |
| 7342 | cls.add_method('Deserialize', |
| 7343 | 'void', |
| 7344 | [param('ns3::TagBuffer', 'i')], |
| 7345 | is_virtual=True) |
| 7346 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function] |
| 7347 | cls.add_method('Disable', |
| 7348 | 'void', |
| 7349 | []) |
| 7350 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function] |
| 7351 | cls.add_method('Enable', |
| 7352 | 'void', |
| 7353 | []) |
| 7354 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function] |
| 7355 | cls.add_method('GetInstanceTypeId', |
| 7356 | 'ns3::TypeId', |
| 7357 | [], |
| 7358 | is_const=True, is_virtual=True) |
| 7359 | ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function] |
| 7360 | cls.add_method('GetSerializedSize', |
| 7361 | 'uint32_t', |
| 7362 | [], |
| 7363 | is_const=True, is_virtual=True) |
| 7364 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function] |
| 7365 | cls.add_method('GetTypeId', |
| 7366 | 'ns3::TypeId', |
| 7367 | [], |
| 7368 | is_static=True) |
| 7369 | ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function] |
| 7370 | cls.add_method('IsEnabled', |
| 7371 | 'bool', |
| 7372 | [], |
| 7373 | is_const=True) |
| 7374 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function] |
| 7375 | cls.add_method('Print', |
| 7376 | 'void', |
| 7377 | [param('std::ostream &', 'os')], |
| 7378 | is_const=True, is_virtual=True) |
| 7379 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function] |
| 7380 | cls.add_method('Serialize', |
| 7381 | 'void', |
| 7382 | [param('ns3::TagBuffer', 'i')], |
| 7383 | is_const=True, is_virtual=True) |
| 7384 | return |
| 7385 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 7386 | def register_Ns3SpringMobilityModel_methods(root_module, cls): |
| 7387 | ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel(ns3::SpringMobilityModel const & arg0) [copy constructor] |
| 7388 | cls.add_constructor([param('ns3::SpringMobilityModel const &', 'arg0')]) |
| 7389 | ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel() [constructor] |
| 7390 | cls.add_constructor([]) |
| 7391 | ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::AddSpring(ns3::Ptr<ns3::MobilityModel> node) [member function] |
| 7392 | cls.add_method('AddSpring', |
| 7393 | 'void', |
| 7394 | [param('ns3::Ptr< ns3::MobilityModel >', 'node')]) |
| 7395 | ## spring-mobility-model.h (module 'NDNabstraction'): static ns3::TypeId ns3::SpringMobilityModel::GetTypeId() [member function] |
| 7396 | cls.add_method('GetTypeId', |
| 7397 | 'ns3::TypeId', |
| 7398 | [], |
| 7399 | is_static=True) |
| 7400 | ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetPosition() const [member function] |
| 7401 | cls.add_method('DoGetPosition', |
| 7402 | 'ns3::Vector', |
| 7403 | [], |
| 7404 | is_const=True, visibility='private', is_virtual=True) |
| 7405 | ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetVelocity() const [member function] |
| 7406 | cls.add_method('DoGetVelocity', |
| 7407 | 'ns3::Vector', |
| 7408 | [], |
| 7409 | is_const=True, visibility='private', is_virtual=True) |
| 7410 | ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoSetPosition(ns3::Vector const & position) [member function] |
| 7411 | cls.add_method('DoSetPosition', |
| 7412 | 'void', |
| 7413 | [param('ns3::Vector const &', 'position')], |
| 7414 | visibility='private', is_virtual=True) |
| 7415 | ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoStart() [member function] |
| 7416 | cls.add_method('DoStart', |
| 7417 | 'void', |
| 7418 | [], |
| 7419 | visibility='private', is_virtual=True) |
| 7420 | return |
| 7421 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7422 | def register_Ns3TcpCongestionWindowTracer_methods(root_module, cls): |
| 7423 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(ns3::TcpCongestionWindowTracer const & arg0) [copy constructor] |
| 7424 | cls.add_constructor([param('ns3::TcpCongestionWindowTracer const &', 'arg0')]) |
| 7425 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor] |
| 7426 | cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')]) |
| 7427 | ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::TcpCongestionWindowTracer::Connect() [member function] |
| 7428 | cls.add_method('Connect', |
| 7429 | 'void', |
| 7430 | []) |
| 7431 | return |
| 7432 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7433 | def register_Ns3TimeChecker_methods(root_module, cls): |
| 7434 | ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor] |
| 7435 | cls.add_constructor([]) |
| 7436 | ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor] |
| 7437 | cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')]) |
| 7438 | return |
| 7439 | |
| 7440 | def register_Ns3TimeValue_methods(root_module, cls): |
| 7441 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor] |
| 7442 | cls.add_constructor([]) |
| 7443 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor] |
| 7444 | cls.add_constructor([param('ns3::TimeValue const &', 'arg0')]) |
| 7445 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor] |
| 7446 | cls.add_constructor([param('ns3::Time const &', 'value')]) |
| 7447 | ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function] |
| 7448 | cls.add_method('Copy', |
| 7449 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7450 | [], |
| 7451 | is_const=True, is_virtual=True) |
| 7452 | ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7453 | cls.add_method('DeserializeFromString', |
| 7454 | 'bool', |
| 7455 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7456 | is_virtual=True) |
| 7457 | ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function] |
| 7458 | cls.add_method('Get', |
| 7459 | 'ns3::Time', |
| 7460 | [], |
| 7461 | is_const=True) |
| 7462 | ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7463 | cls.add_method('SerializeToString', |
| 7464 | 'std::string', |
| 7465 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7466 | is_const=True, is_virtual=True) |
| 7467 | ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function] |
| 7468 | cls.add_method('Set', |
| 7469 | 'void', |
| 7470 | [param('ns3::Time const &', 'value')]) |
| 7471 | return |
| 7472 | |
| 7473 | def register_Ns3TypeIdChecker_methods(root_module, cls): |
| 7474 | ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor] |
| 7475 | cls.add_constructor([]) |
| 7476 | ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor] |
| 7477 | cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')]) |
| 7478 | return |
| 7479 | |
| 7480 | def register_Ns3TypeIdValue_methods(root_module, cls): |
| 7481 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor] |
| 7482 | cls.add_constructor([]) |
| 7483 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor] |
| 7484 | cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')]) |
| 7485 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor] |
| 7486 | cls.add_constructor([param('ns3::TypeId const &', 'value')]) |
| 7487 | ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function] |
| 7488 | cls.add_method('Copy', |
| 7489 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7490 | [], |
| 7491 | is_const=True, is_virtual=True) |
| 7492 | ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7493 | cls.add_method('DeserializeFromString', |
| 7494 | 'bool', |
| 7495 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7496 | is_virtual=True) |
| 7497 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function] |
| 7498 | cls.add_method('Get', |
| 7499 | 'ns3::TypeId', |
| 7500 | [], |
| 7501 | is_const=True) |
| 7502 | ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7503 | cls.add_method('SerializeToString', |
| 7504 | 'std::string', |
| 7505 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7506 | is_const=True, is_virtual=True) |
| 7507 | ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function] |
| 7508 | cls.add_method('Set', |
| 7509 | 'void', |
| 7510 | [param('ns3::TypeId const &', 'value')]) |
| 7511 | return |
| 7512 | |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 7513 | def register_Ns3Vector2DChecker_methods(root_module, cls): |
| 7514 | ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor] |
| 7515 | cls.add_constructor([]) |
| 7516 | ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor] |
| 7517 | cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')]) |
| 7518 | return |
| 7519 | |
| 7520 | def register_Ns3Vector2DValue_methods(root_module, cls): |
| 7521 | ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor] |
| 7522 | cls.add_constructor([]) |
| 7523 | ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor] |
| 7524 | cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')]) |
| 7525 | ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor] |
| 7526 | cls.add_constructor([param('ns3::Vector2D const &', 'value')]) |
| 7527 | ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function] |
| 7528 | cls.add_method('Copy', |
| 7529 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7530 | [], |
| 7531 | is_const=True, is_virtual=True) |
| 7532 | ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7533 | cls.add_method('DeserializeFromString', |
| 7534 | 'bool', |
| 7535 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7536 | is_virtual=True) |
| 7537 | ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function] |
| 7538 | cls.add_method('Get', |
| 7539 | 'ns3::Vector2D', |
| 7540 | [], |
| 7541 | is_const=True) |
| 7542 | ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7543 | cls.add_method('SerializeToString', |
| 7544 | 'std::string', |
| 7545 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7546 | is_const=True, is_virtual=True) |
| 7547 | ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function] |
| 7548 | cls.add_method('Set', |
| 7549 | 'void', |
| 7550 | [param('ns3::Vector2D const &', 'value')]) |
| 7551 | return |
| 7552 | |
| 7553 | def register_Ns3Vector3DChecker_methods(root_module, cls): |
| 7554 | ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor] |
| 7555 | cls.add_constructor([]) |
| 7556 | ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor] |
| 7557 | cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')]) |
| 7558 | return |
| 7559 | |
| 7560 | def register_Ns3Vector3DValue_methods(root_module, cls): |
| 7561 | ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor] |
| 7562 | cls.add_constructor([]) |
| 7563 | ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor] |
| 7564 | cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')]) |
| 7565 | ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor] |
| 7566 | cls.add_constructor([param('ns3::Vector3D const &', 'value')]) |
| 7567 | ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function] |
| 7568 | cls.add_method('Copy', |
| 7569 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7570 | [], |
| 7571 | is_const=True, is_virtual=True) |
| 7572 | ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7573 | cls.add_method('DeserializeFromString', |
| 7574 | 'bool', |
| 7575 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7576 | is_virtual=True) |
| 7577 | ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function] |
| 7578 | cls.add_method('Get', |
| 7579 | 'ns3::Vector3D', |
| 7580 | [], |
| 7581 | is_const=True) |
| 7582 | ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7583 | cls.add_method('SerializeToString', |
| 7584 | 'std::string', |
| 7585 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7586 | is_const=True, is_virtual=True) |
| 7587 | ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function] |
| 7588 | cls.add_method('Set', |
| 7589 | 'void', |
| 7590 | [param('ns3::Vector3D const &', 'value')]) |
| 7591 | return |
| 7592 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7593 | def register_Ns3AddressChecker_methods(root_module, cls): |
| 7594 | ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor] |
| 7595 | cls.add_constructor([]) |
| 7596 | ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor] |
| 7597 | cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')]) |
| 7598 | return |
| 7599 | |
| 7600 | def register_Ns3AddressValue_methods(root_module, cls): |
| 7601 | ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor] |
| 7602 | cls.add_constructor([]) |
| 7603 | ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor] |
| 7604 | cls.add_constructor([param('ns3::AddressValue const &', 'arg0')]) |
| 7605 | ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor] |
| 7606 | cls.add_constructor([param('ns3::Address const &', 'value')]) |
| 7607 | ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function] |
| 7608 | cls.add_method('Copy', |
| 7609 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7610 | [], |
| 7611 | is_const=True, is_virtual=True) |
| 7612 | ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7613 | cls.add_method('DeserializeFromString', |
| 7614 | 'bool', |
| 7615 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7616 | is_virtual=True) |
| 7617 | ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function] |
| 7618 | cls.add_method('Get', |
| 7619 | 'ns3::Address', |
| 7620 | [], |
| 7621 | is_const=True) |
| 7622 | ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7623 | cls.add_method('SerializeToString', |
| 7624 | 'std::string', |
| 7625 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7626 | is_const=True, is_virtual=True) |
| 7627 | ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function] |
| 7628 | cls.add_method('Set', |
| 7629 | 'void', |
| 7630 | [param('ns3::Address const &', 'value')]) |
| 7631 | return |
| 7632 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7633 | def register_functions(root_module): |
| 7634 | module = root_module |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 7635 | ## batches.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBatchesChecker() [free function] |
| 7636 | module.add_function('MakeBatchesChecker', |
| 7637 | 'ns3::Ptr< ns3::AttributeChecker const >', |
| 7638 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7639 | ## ccnx-name-components.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCcnxNameComponentsChecker() [free function] |
| 7640 | module.add_function('MakeCcnxNameComponentsChecker', |
| 7641 | 'ns3::Ptr< ns3::AttributeChecker const >', |
| 7642 | []) |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7643 | register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
| 7644 | register_functions_ns3_internal(module.get_submodule('internal'), root_module) |
| 7645 | return |
| 7646 | |
Alexander Afanasyev | aa032ea | 2011-12-13 12:38:32 -0800 | [diff] [blame] | 7647 | def register_functions_ns3_FatalImpl(module, root_module): |
| 7648 | return |
| 7649 | |
| 7650 | def register_functions_ns3_internal(module, root_module): |
| 7651 | return |
| 7652 | |
| 7653 | def main(): |
| 7654 | out = FileCodeSink(sys.stdout) |
| 7655 | root_module = module_init() |
| 7656 | register_types(root_module) |
| 7657 | register_methods(root_module) |
| 7658 | register_functions(root_module) |
| 7659 | root_module.generate(out) |
| 7660 | |
| 7661 | if __name__ == '__main__': |
| 7662 | main() |
| 7663 | |