Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [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(): |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 17 | root_module = Module('ns.NDNabstraction', cpp_namespace='::ns3') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 18 | return root_module |
| 19 | |
| 20 | def register_types(module): |
| 21 | root_module = module.get_root() |
| 22 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 23 | ## log.h (module 'core'): ns3::LogLevel [enumeration] |
| 24 | module.add_enum('LogLevel', ['LOG_NONE', 'LOG_ERROR', 'LOG_LEVEL_ERROR', 'LOG_WARN', 'LOG_LEVEL_WARN', 'LOG_DEBUG', 'LOG_LEVEL_DEBUG', 'LOG_INFO', 'LOG_LEVEL_INFO', 'LOG_FUNCTION', 'LOG_LEVEL_FUNCTION', 'LOG_LOGIC', 'LOG_LEVEL_LOGIC', 'LOG_ALL', 'LOG_LEVEL_ALL', 'LOG_PREFIX_FUNC', 'LOG_PREFIX_TIME', 'LOG_PREFIX_NODE'], import_from_module='ns.core') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 25 | ## address.h (module 'network'): ns3::Address [class] |
| 26 | module.add_class('Address', import_from_module='ns.network') |
| 27 | ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration] |
| 28 | module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 29 | ## application-container.h (module 'network'): ns3::ApplicationContainer [class] |
| 30 | module.add_class('ApplicationContainer', import_from_module='ns.network') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 31 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper [class] |
| 32 | module.add_class('AsciiTraceHelper', import_from_module='ns.network') |
| 33 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx [class] |
| 34 | module.add_class('AsciiTraceHelperForCcnx', allow_subclassing=True) |
| 35 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice [class] |
| 36 | module.add_class('AsciiTraceHelperForDevice', allow_subclassing=True, import_from_module='ns.network') |
| 37 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class] |
| 38 | module.add_class('AttributeConstructionList', import_from_module='ns.core') |
| 39 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct] |
| 40 | module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 41 | ## buffer.h (module 'network'): ns3::Buffer [class] |
| 42 | module.add_class('Buffer', import_from_module='ns.network') |
| 43 | ## buffer.h (module 'network'): ns3::Buffer::Iterator [class] |
| 44 | module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 45 | ## packet.h (module 'network'): ns3::ByteTagIterator [class] |
| 46 | module.add_class('ByteTagIterator', import_from_module='ns.network') |
| 47 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class] |
| 48 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator']) |
| 49 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class] |
| 50 | module.add_class('ByteTagList', import_from_module='ns.network') |
| 51 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class] |
| 52 | module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList']) |
| 53 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct] |
| 54 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 55 | ## callback.h (module 'core'): ns3::CallbackBase [class] |
| 56 | module.add_class('CallbackBase', import_from_module='ns.core') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 57 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::CcnxConsumerHelper [class] |
| 58 | module.add_class('CcnxConsumerHelper') |
| 59 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreContainer [struct] |
| 60 | module.add_class('CcnxContentStoreContainer') |
| 61 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreEntry [class] |
| 62 | module.add_class('CcnxContentStoreEntry') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 63 | ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper [class] |
| 64 | module.add_class('CcnxDecodingHelper') |
| 65 | ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper [class] |
| 66 | module.add_class('CcnxEncodingHelper') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 67 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib [class] |
| 68 | module.add_class('CcnxFib') |
| 69 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer [struct] |
| 70 | module.add_class('CcnxFibEntryContainer') |
| 71 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric [class] |
| 72 | module.add_class('CcnxFibFaceMetric') |
| 73 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer [struct] |
| 74 | module.add_class('CcnxFibFaceMetricContainer') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 75 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper [class] |
| 76 | module.add_class('CcnxForwardingHelper', allow_subclassing=True) |
| 77 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper [class] |
| 78 | module.add_class('CcnxHeaderHelper') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 79 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::CcnxInterestSenderHelper [class] |
| 80 | module.add_class('CcnxInterestSenderHelper') |
| 81 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry [struct] |
| 82 | module.add_class('CcnxPitEntry') |
| 83 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddIncoming [struct] |
| 84 | module.add_class('AddIncoming', outer_class=root_module['ns3::CcnxPitEntry']) |
| 85 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddOutgoing [struct] |
| 86 | module.add_class('AddOutgoing', outer_class=root_module['ns3::CcnxPitEntry']) |
| 87 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::ClearIncoming [struct] |
| 88 | module.add_class('ClearIncoming', outer_class=root_module['ns3::CcnxPitEntry']) |
| 89 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::DeleteIncoming [struct] |
| 90 | module.add_class('DeleteIncoming', outer_class=root_module['ns3::CcnxPitEntry']) |
| 91 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::SetFibEntry [struct] |
| 92 | module.add_class('SetFibEntry', outer_class=root_module['ns3::CcnxPitEntry']) |
| 93 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryContainer [struct] |
| 94 | module.add_class('CcnxPitEntryContainer') |
| 95 | ## ccnx-pit-entry-incoming-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFace [struct] |
| 96 | module.add_class('CcnxPitEntryIncomingFace') |
| 97 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFaceContainer [struct] |
| 98 | module.add_class('CcnxPitEntryIncomingFaceContainer') |
| 99 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryNotFound [class] |
| 100 | module.add_class('CcnxPitEntryNotFound') |
| 101 | ## ccnx-pit-entry-outgoing-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFace [struct] |
| 102 | module.add_class('CcnxPitEntryOutgoingFace') |
| 103 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFaceContainer [struct] |
| 104 | module.add_class('CcnxPitEntryOutgoingFaceContainer') |
| 105 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::CcnxProducerHelper [class] |
| 106 | module.add_class('CcnxProducerHelper') |
| 107 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitContainer [struct] |
| 108 | module.add_class('CcnxRitContainer') |
| 109 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry [struct] |
| 110 | module.add_class('CcnxRitEntry') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 111 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException [class] |
| 112 | module.add_class('CcnxUnknownHeaderException') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 113 | ## data-rate.h (module 'network'): ns3::DataRate [class] |
| 114 | module.add_class('DataRate', import_from_module='ns.network') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 115 | ## event-id.h (module 'core'): ns3::EventId [class] |
| 116 | module.add_class('EventId', import_from_module='ns.core') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 117 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
| 118 | module.add_class('Ipv4Address', import_from_module='ns.network') |
| 119 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
| 120 | root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 121 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class] |
| 122 | module.add_class('Ipv4Mask', import_from_module='ns.network') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 123 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
| 124 | module.add_class('Ipv6Address', import_from_module='ns.network') |
| 125 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
| 126 | root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address']) |
| 127 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class] |
| 128 | module.add_class('Ipv6Prefix', import_from_module='ns.network') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 129 | ## log.h (module 'core'): ns3::LogComponent [class] |
| 130 | module.add_class('LogComponent', import_from_module='ns.core') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 131 | ## mac48-address.h (module 'network'): ns3::Mac48Address [class] |
| 132 | module.add_class('Mac48Address', import_from_module='ns.network') |
| 133 | ## mac48-address.h (module 'network'): ns3::Mac48Address [class] |
| 134 | root_module['ns3::Mac48Address'].implicitly_converts_to(root_module['ns3::Address']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 135 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class] |
| 136 | module.add_class('NetDeviceContainer', import_from_module='ns.network') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 137 | ## node-container.h (module 'network'): ns3::NodeContainer [class] |
| 138 | module.add_class('NodeContainer', import_from_module='ns.network') |
| 139 | ## object-base.h (module 'core'): ns3::ObjectBase [class] |
| 140 | module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core') |
| 141 | ## object.h (module 'core'): ns3::ObjectDeleter [struct] |
| 142 | module.add_class('ObjectDeleter', import_from_module='ns.core') |
| 143 | ## object-factory.h (module 'core'): ns3::ObjectFactory [class] |
| 144 | module.add_class('ObjectFactory', import_from_module='ns.core') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 145 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class] |
| 146 | module.add_class('PacketMetadata', import_from_module='ns.network') |
| 147 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct] |
| 148 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata']) |
| 149 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration] |
| 150 | module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network') |
| 151 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class] |
| 152 | module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata']) |
| 153 | ## packet.h (module 'network'): ns3::PacketTagIterator [class] |
| 154 | module.add_class('PacketTagIterator', import_from_module='ns.network') |
| 155 | ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class] |
| 156 | module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator']) |
| 157 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class] |
| 158 | module.add_class('PacketTagList', import_from_module='ns.network') |
| 159 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct] |
| 160 | module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList']) |
| 161 | ## pcap-file.h (module 'network'): ns3::PcapFile [class] |
| 162 | module.add_class('PcapFile', import_from_module='ns.network') |
| 163 | ## trace-helper.h (module 'network'): ns3::PcapHelper [class] |
| 164 | module.add_class('PcapHelper', import_from_module='ns.network') |
| 165 | ## trace-helper.h (module 'network'): ns3::PcapHelper [enumeration] |
| 166 | module.add_enum('', ['DLT_NULL', 'DLT_EN10MB', 'DLT_PPP', 'DLT_RAW', 'DLT_IEEE802_11', 'DLT_PRISM_HEADER', 'DLT_IEEE802_11_RADIO'], outer_class=root_module['ns3::PcapHelper'], import_from_module='ns.network') |
| 167 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx [class] |
| 168 | module.add_class('PcapHelperForCcnx', allow_subclassing=True) |
| 169 | ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice [class] |
| 170 | module.add_class('PcapHelperForDevice', allow_subclassing=True, import_from_module='ns.network') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 171 | ## point-to-point-helper.h (module 'point-to-point'): ns3::PointToPointHelper [class] |
| 172 | module.add_class('PointToPointHelper', import_from_module='ns.point_to_point', parent=[root_module['ns3::PcapHelperForDevice'], root_module['ns3::AsciiTraceHelperForDevice']]) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 173 | ## random-variable.h (module 'core'): ns3::RandomVariable [class] |
| 174 | module.add_class('RandomVariable', import_from_module='ns.core') |
| 175 | ## random-variable.h (module 'core'): ns3::SeedManager [class] |
| 176 | module.add_class('SeedManager', import_from_module='ns.core') |
| 177 | ## random-variable.h (module 'core'): ns3::SequentialVariable [class] |
| 178 | module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 179 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > [class] |
| 180 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Chunk', 'ns3::ObjectBase', 'ns3::DefaultDeleter<ns3::Chunk>'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 181 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class] |
| 182 | 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 | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 183 | ## simulator.h (module 'core'): ns3::Simulator [class] |
| 184 | module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 185 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper [class] |
| 186 | module.add_class('StupidInterestGeneratorHelper') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 187 | ## tag.h (module 'network'): ns3::Tag [class] |
| 188 | module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase']) |
| 189 | ## tag-buffer.h (module 'network'): ns3::TagBuffer [class] |
| 190 | module.add_class('TagBuffer', import_from_module='ns.network') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 191 | ## random-variable.h (module 'core'): ns3::TriangularVariable [class] |
| 192 | module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 193 | ## type-id.h (module 'core'): ns3::TypeId [class] |
| 194 | module.add_class('TypeId', import_from_module='ns.core') |
| 195 | ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration] |
| 196 | module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 197 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct] |
| 198 | module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
| 199 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct] |
| 200 | module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 201 | ## random-variable.h (module 'core'): ns3::UniformVariable [class] |
| 202 | module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 203 | ## random-variable.h (module 'core'): ns3::WeibullVariable [class] |
| 204 | module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 205 | ## random-variable.h (module 'core'): ns3::ZetaVariable [class] |
| 206 | module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 207 | ## random-variable.h (module 'core'): ns3::ZipfVariable [class] |
| 208 | module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 209 | ## empty.h (module 'core'): ns3::empty [class] |
| 210 | module.add_class('empty', import_from_module='ns.core') |
| 211 | ## int64x64-double.h (module 'core'): ns3::int64x64_t [class] |
| 212 | module.add_class('int64x64_t', import_from_module='ns.core') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 213 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper [class] |
| 214 | module.add_class('CcnxStackHelper', parent=[root_module['ns3::PcapHelperForCcnx'], root_module['ns3::AsciiTraceHelperForCcnx']]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 215 | ## chunk.h (module 'network'): ns3::Chunk [class] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 216 | module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 217 | ## random-variable.h (module 'core'): ns3::ConstantVariable [class] |
| 218 | module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 219 | ## random-variable.h (module 'core'): ns3::DeterministicVariable [class] |
| 220 | module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 221 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class] |
| 222 | module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 223 | ## random-variable.h (module 'core'): ns3::ErlangVariable [class] |
| 224 | module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 225 | ## random-variable.h (module 'core'): ns3::ExponentialVariable [class] |
| 226 | module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 227 | ## random-variable.h (module 'core'): ns3::GammaVariable [class] |
| 228 | module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 229 | ## header.h (module 'network'): ns3::Header [class] |
| 230 | module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 231 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class] |
| 232 | module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable']) |
| 233 | ## random-variable.h (module 'core'): ns3::LogNormalVariable [class] |
| 234 | module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
| 235 | ## random-variable.h (module 'core'): ns3::NormalVariable [class] |
| 236 | module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 237 | ## object.h (module 'core'): ns3::Object [class] |
| 238 | module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
| 239 | ## object.h (module 'core'): ns3::Object::AggregateIterator [class] |
| 240 | module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 241 | ## random-variable.h (module 'core'): ns3::ParetoVariable [class] |
| 242 | module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 243 | ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper [class] |
| 244 | module.add_class('PcapFileWrapper', import_from_module='ns.network', parent=root_module['ns3::Object']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 245 | ## queue.h (module 'network'): ns3::Queue [class] |
| 246 | module.add_class('Queue', import_from_module='ns.network', parent=root_module['ns3::Object']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 247 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class] |
| 248 | 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')) |
| 249 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class] |
| 250 | 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')) |
| 251 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class] |
| 252 | 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')) |
| 253 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class] |
| 254 | 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 | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 255 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> > [class] |
| 256 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnbParser::Block', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnbParser::Block>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
| 257 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > [class] |
| 258 | 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')) |
| 259 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> > [class] |
| 260 | 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')) |
| 261 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > [class] |
| 262 | 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 | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 263 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> > [class] |
| 264 | module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxRoute', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxRoute>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 265 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class] |
| 266 | 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 | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 267 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class] |
| 268 | 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')) |
| 269 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class] |
| 270 | 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')) |
| 271 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class] |
| 272 | 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')) |
| 273 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class] |
| 274 | 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 | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 275 | ## socket.h (module 'network'): ns3::Socket [class] |
| 276 | module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 277 | ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 278 | module.add_enum('SocketErrno', ['ERROR_NOTERROR', 'ERROR_ISCONN', 'ERROR_NOTCONN', 'ERROR_MSGSIZE', 'ERROR_AGAIN', 'ERROR_SHUTDOWN', 'ERROR_OPNOTSUPP', 'ERROR_AFNOSUPPORT', 'ERROR_INVAL', 'ERROR_BADF', 'ERROR_NOROUTETOHOST', 'ERROR_NODEV', 'ERROR_ADDRNOTAVAIL', 'ERROR_ADDRINUSE', 'SOCKET_ERRNO_LAST'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network') |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 279 | ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration] |
| 280 | 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') |
| 281 | ## socket.h (module 'network'): ns3::SocketAddressTag [class] |
| 282 | module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 283 | ## socket-factory.h (module 'network'): ns3::SocketFactory [class] |
| 284 | module.add_class('SocketFactory', import_from_module='ns.network', parent=root_module['ns3::Object']) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 285 | ## socket.h (module 'network'): ns3::SocketIpTtlTag [class] |
| 286 | module.add_class('SocketIpTtlTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
| 287 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class] |
| 288 | module.add_class('SocketSetDontFragmentTag', import_from_module='ns.network', parent=root_module['ns3::Tag']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 289 | ## nstime.h (module 'core'): ns3::Time [class] |
| 290 | module.add_class('Time', import_from_module='ns.core') |
| 291 | ## nstime.h (module 'core'): ns3::Time::Unit [enumeration] |
| 292 | module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core') |
| 293 | ## nstime.h (module 'core'): ns3::Time [class] |
| 294 | root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 295 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class] |
| 296 | module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::Object']) |
| 297 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class] |
| 298 | module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader']) |
| 299 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class] |
| 300 | module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
| 301 | ## trailer.h (module 'network'): ns3::Trailer [class] |
| 302 | module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 303 | ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory [class] |
| 304 | module.add_class('UdpSocketFactory', import_from_module='ns.internet', parent=root_module['ns3::SocketFactory']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 305 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader [class] |
| 306 | module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 307 | ## application.h (module 'network'): ns3::Application [class] |
| 308 | module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 309 | ## attribute.h (module 'core'): ns3::AttributeAccessor [class] |
| 310 | module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
| 311 | ## attribute.h (module 'core'): ns3::AttributeChecker [class] |
| 312 | 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> >']) |
| 313 | ## attribute.h (module 'core'): ns3::AttributeValue [class] |
| 314 | 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 | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 315 | ## boolean.h (module 'core'): ns3::BooleanChecker [class] |
| 316 | module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 317 | ## boolean.h (module 'core'): ns3::BooleanValue [class] |
| 318 | module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 319 | ## callback.h (module 'core'): ns3::CallbackChecker [class] |
| 320 | module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 321 | ## callback.h (module 'core'): ns3::CallbackImplBase [class] |
| 322 | module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
| 323 | ## callback.h (module 'core'): ns3::CallbackValue [class] |
| 324 | module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 325 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [class] |
| 326 | module.add_class('Ccnx', parent=root_module['ns3::Object']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 327 | ## ccnx-consumer.h (module 'NDNabstraction'): ns3::CcnxConsumer [class] |
| 328 | module.add_class('CcnxConsumer', parent=root_module['ns3::Application']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 329 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader [class] |
| 330 | module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::Header']) |
| 331 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail [class] |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 332 | module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Trailer']) |
| 333 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStore [class] |
| 334 | module.add_class('CcnxContentStore', parent=root_module['ns3::Object']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 335 | ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace [class] |
| 336 | module.add_class('CcnxFace', parent=root_module['ns3::Object']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [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> >']) |
| 339 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry [class] |
| 340 | module.add_class('CcnxFibEntry', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 341 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy [class] |
| 342 | module.add_class('CcnxForwardingStrategy', parent=root_module['ns3::Object']) |
| 343 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [class] |
| 344 | module.add_class('CcnxInterestHeader', parent=root_module['ns3::Header']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 345 | ## ccnx-interest-sender.h (module 'NDNabstraction'): ns3::CcnxInterestSender [class] |
| 346 | module.add_class('CcnxInterestSender', parent=root_module['ns3::Application']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 347 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol [class] |
| 348 | module.add_class('CcnxL3Protocol', parent=root_module['ns3::Ccnx']) |
| 349 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::DropReason [enumeration] |
| 350 | module.add_enum('DropReason', ['DROP_DUPLICATE_INTEREST', 'DROP_CONGESTION', 'DROP_NO_ROUTE', 'DROP_INTERFACE_DOWN'], outer_class=root_module['ns3::CcnxL3Protocol']) |
| 351 | ## ccnx-local-face.h (module 'NDNabstraction'): ns3::CcnxLocalFace [class] |
| 352 | module.add_class('CcnxLocalFace', parent=root_module['ns3::CcnxFace']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 353 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents [class] |
| 354 | module.add_class('CcnxNameComponents', parent=root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >']) |
| 355 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker [class] |
| 356 | module.add_class('CcnxNameComponentsChecker', parent=root_module['ns3::AttributeChecker']) |
| 357 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue [class] |
| 358 | module.add_class('CcnxNameComponentsValue', parent=root_module['ns3::AttributeValue']) |
| 359 | ## ccnx-net-device-face.h (module 'NDNabstraction'): ns3::CcnxNetDeviceFace [class] |
| 360 | module.add_class('CcnxNetDeviceFace', parent=root_module['ns3::CcnxFace']) |
| 361 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPit [class] |
| 362 | module.add_class('CcnxPit', parent=root_module['ns3::Object']) |
| 363 | ## ccnx-producer.h (module 'NDNabstraction'): ns3::CcnxProducer [class] |
| 364 | module.add_class('CcnxProducer', parent=root_module['ns3::Application']) |
| 365 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRit [class] |
| 366 | module.add_class('CcnxRit', parent=root_module['ns3::Object']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 367 | ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute [class] |
| 368 | module.add_class('CcnxRoute', parent=root_module['ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 369 | ## data-rate.h (module 'network'): ns3::DataRateChecker [class] |
| 370 | module.add_class('DataRateChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 371 | ## data-rate.h (module 'network'): ns3::DataRateValue [class] |
| 372 | module.add_class('DataRateValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
| 373 | ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue [class] |
| 374 | module.add_class('DropTailQueue', import_from_module='ns.network', parent=root_module['ns3::Queue']) |
| 375 | ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::Mode [enumeration] |
| 376 | module.add_enum('Mode', ['ILLEGAL', 'PACKETS', 'BYTES'], outer_class=root_module['ns3::DropTailQueue'], import_from_module='ns.network') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 377 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class] |
| 378 | module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 379 | ## event-impl.h (module 'core'): ns3::EventImpl [class] |
| 380 | module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 381 | ## integer.h (module 'core'): ns3::IntegerValue [class] |
| 382 | module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 383 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class] |
| 384 | module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 385 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class] |
| 386 | module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 387 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class] |
| 388 | module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 389 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class] |
| 390 | module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 391 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class] |
| 392 | module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 393 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class] |
| 394 | module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
| 395 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class] |
| 396 | module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 397 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class] |
| 398 | module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 399 | ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker [class] |
| 400 | module.add_class('Mac48AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 401 | ## mac48-address.h (module 'network'): ns3::Mac48AddressValue [class] |
| 402 | module.add_class('Mac48AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 403 | ## net-device.h (module 'network'): ns3::NetDevice [class] |
| 404 | module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 405 | ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration] |
| 406 | module.add_enum('PacketType', ['PACKET_HOST', 'NS3_PACKET_HOST', 'PACKET_BROADCAST', 'NS3_PACKET_BROADCAST', 'PACKET_MULTICAST', 'NS3_PACKET_MULTICAST', 'PACKET_OTHERHOST', 'NS3_PACKET_OTHERHOST'], outer_class=root_module['ns3::NetDevice'], import_from_module='ns.network') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 407 | ## nix-vector.h (module 'network'): ns3::NixVector [class] |
| 408 | module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 409 | ## node.h (module 'network'): ns3::Node [class] |
| 410 | module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object']) |
| 411 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class] |
| 412 | module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 413 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class] |
| 414 | module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 415 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class] |
| 416 | module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >']) |
| 417 | ## packet.h (module 'network'): ns3::Packet [class] |
| 418 | module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 419 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::PointToPointNetDevice [class] |
| 420 | module.add_class('PointToPointNetDevice', import_from_module='ns.point_to_point', parent=root_module['ns3::NetDevice']) |
| 421 | ## pointer.h (module 'core'): ns3::PointerChecker [class] |
| 422 | module.add_class('PointerChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 423 | ## pointer.h (module 'core'): ns3::PointerValue [class] |
| 424 | module.add_class('PointerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 425 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class] |
| 426 | module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 427 | ## random-variable.h (module 'core'): ns3::RandomVariableValue [class] |
| 428 | module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 429 | ## string.h (module 'core'): ns3::StringChecker [class] |
| 430 | module.add_class('StringChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 431 | ## string.h (module 'core'): ns3::StringValue [class] |
| 432 | module.add_class('StringValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 433 | ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator [class] |
| 434 | module.add_class('StupidInterestGenerator', parent=root_module['ns3::Application']) |
| 435 | ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink [class] |
| 436 | module.add_class('StupidInterestSink', parent=root_module['ns3::Application']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 437 | ## nstime.h (module 'core'): ns3::TimeChecker [class] |
| 438 | module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 439 | ## nstime.h (module 'core'): ns3::TimeValue [class] |
| 440 | module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
| 441 | ## type-id.h (module 'core'): ns3::TypeIdChecker [class] |
| 442 | module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
| 443 | ## type-id.h (module 'core'): ns3::TypeIdValue [class] |
| 444 | module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 445 | ## uinteger.h (module 'core'): ns3::UintegerValue [class] |
| 446 | module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 447 | ## address.h (module 'network'): ns3::AddressChecker [class] |
| 448 | module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
| 449 | ## address.h (module 'network'): ns3::AddressValue [class] |
| 450 | module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 451 | module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 452 | 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') |
| 453 | module.add_container('std::list< std::string >', 'std::string', container_type='list') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 454 | module.add_container('std::list< ns3::Ptr< ns3::Socket > >', 'ns3::Ptr< ns3::Socket >', container_type='list') |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 455 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter') |
| 456 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*') |
| 457 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogNodePrinter&') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 458 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter') |
| 459 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*') |
| 460 | typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&') |
| 461 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 462 | ## Register a nested module for the namespace CcnbParser |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 463 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 464 | nested_module = module.add_cpp_namespace('CcnbParser') |
| 465 | register_types_ns3_CcnbParser(nested_module) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 466 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 467 | |
| 468 | ## Register a nested module for the namespace FatalImpl |
| 469 | |
| 470 | nested_module = module.add_cpp_namespace('FatalImpl') |
| 471 | register_types_ns3_FatalImpl(nested_module) |
| 472 | |
| 473 | |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 474 | ## Register a nested module for the namespace internal |
| 475 | |
| 476 | nested_module = module.add_cpp_namespace('internal') |
| 477 | register_types_ns3_internal(nested_module) |
| 478 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 479 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 480 | def register_types_ns3_CcnbParser(module): |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 481 | root_module = module.get_root() |
| 482 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 483 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser::ccn_dtag [enumeration] |
| 484 | module.add_enum('ccn_dtag', ['CCN_DTAG_Any', 'CCN_DTAG_Name', 'CCN_DTAG_Component', 'CCN_DTAG_Certificate', 'CCN_DTAG_Collection', 'CCN_DTAG_CompleteName', 'CCN_DTAG_Content', 'CCN_DTAG_SignedInfo', 'CCN_DTAG_ContentDigest', 'CCN_DTAG_ContentHash', 'CCN_DTAG_Count', 'CCN_DTAG_Header', 'CCN_DTAG_Interest', 'CCN_DTAG_Key', 'CCN_DTAG_KeyLocator', 'CCN_DTAG_KeyName', 'CCN_DTAG_Length', 'CCN_DTAG_Link', 'CCN_DTAG_LinkAuthenticator', 'CCN_DTAG_NameComponentCount', 'CCN_DTAG_RootDigest', 'CCN_DTAG_Signature', 'CCN_DTAG_Start', 'CCN_DTAG_Timestamp', 'CCN_DTAG_Type', 'CCN_DTAG_Nonce', 'CCN_DTAG_Scope', 'CCN_DTAG_Exclude', 'CCN_DTAG_Bloom', 'CCN_DTAG_BloomSeed', 'CCN_DTAG_AnswerOriginKind', 'CCN_DTAG_InterestLifetime', 'CCN_DTAG_Witness', 'CCN_DTAG_SignatureBits', 'CCN_DTAG_DigestAlgorithm', 'CCN_DTAG_BlockSize', 'CCN_DTAG_FreshnessSeconds', 'CCN_DTAG_FinalBlockID', 'CCN_DTAG_PublisherPublicKeyDigest', 'CCN_DTAG_PublisherCertificateDigest', 'CCN_DTAG_PublisherIssuerKeyDigest', 'CCN_DTAG_PublisherIssuerCertificateDigest', 'CCN_DTAG_ContentObject', 'CCN_DTAG_WrappedKey', 'CCN_DTAG_WrappingKeyIdentifier', 'CCN_DTAG_WrapAlgorithm', 'CCN_DTAG_KeyAlgorithm', 'CCN_DTAG_Label', 'CCN_DTAG_EncryptedKey', 'CCN_DTAG_EncryptedNonceKey', 'CCN_DTAG_WrappingKeyName', 'CCN_DTAG_Action', 'CCN_DTAG_FaceID', 'CCN_DTAG_IPProto', 'CCN_DTAG_Host', 'CCN_DTAG_Port', 'CCN_DTAG_MulticastInterface', 'CCN_DTAG_ForwardingFlags', 'CCN_DTAG_FaceInstance', 'CCN_DTAG_ForwardingEntry', 'CCN_DTAG_MulticastTTL', 'CCN_DTAG_MinSuffixComponents', 'CCN_DTAG_MaxSuffixComponents', 'CCN_DTAG_ChildSelector', 'CCN_DTAG_RepositoryInfo', 'CCN_DTAG_Version', 'CCN_DTAG_RepositoryVersion', 'CCN_DTAG_GlobalPrefix', 'CCN_DTAG_LocalName', 'CCN_DTAG_Policy', 'CCN_DTAG_Namespace', 'CCN_DTAG_GlobalPrefixName', 'CCN_DTAG_PolicyVersion', 'CCN_DTAG_KeyValueSet', 'CCN_DTAG_KeyValuePair', 'CCN_DTAG_IntegerValue', 'CCN_DTAG_DecimalValue', 'CCN_DTAG_StringValue', 'CCN_DTAG_BinaryValue', 'CCN_DTAG_NameValue', 'CCN_DTAG_Entry', 'CCN_DTAG_ACL', 'CCN_DTAG_ParameterizedName', 'CCN_DTAG_Prefix', 'CCN_DTAG_Suffix', 'CCN_DTAG_Root', 'CCN_DTAG_ProfileName', 'CCN_DTAG_Parameters', 'CCN_DTAG_InfoString', 'CCN_DTAG_StatusResponse', 'CCN_DTAG_StatusCode', 'CCN_DTAG_StatusText', 'CCN_DTAG_SequenceNumber', 'CCN_DTAG_CCNProtocolDataUnit']) |
| 485 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser [enumeration] |
| 486 | module.add_enum('', ['CCN_CLOSE']) |
| 487 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser::ccn_tt [enumeration] |
| 488 | module.add_enum('ccn_tt', ['CCN_EXT', 'CCN_TAG', 'CCN_DTAG', 'CCN_ATTR', 'CCN_DATTR', 'CCN_BLOB', 'CCN_UDATA', 'CCN_NO_TOKEN']) |
| 489 | ## ccnb-parser-block.h (module 'NDNabstraction'): ns3::CcnbParser::Block [class] |
| 490 | module.add_class('Block', parent=root_module['ns3::SimpleRefCount< ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> >']) |
| 491 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser::CcnbDecodingException [class] |
| 492 | module.add_class('CcnbDecodingException') |
| 493 | ## ccnb-parser-ext.h (module 'NDNabstraction'): ns3::CcnbParser::Ext [class] |
| 494 | module.add_class('Ext', parent=root_module['ns3::CcnbParser::Block']) |
| 495 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguVisitor [class] |
| 496 | module.add_class('NoArguVisitor', allow_subclassing=True) |
| 497 | ## ccnb-parser-udata.h (module 'NDNabstraction'): ns3::CcnbParser::Udata [class] |
| 498 | module.add_class('Udata', parent=root_module['ns3::CcnbParser::Block']) |
| 499 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::Visitor [class] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 500 | module.add_class('Visitor', allow_subclassing=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 501 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguVisitor [class] |
| 502 | module.add_class('VoidNoArguVisitor', allow_subclassing=True) |
| 503 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidVisitor [class] |
| 504 | module.add_class('VoidVisitor', allow_subclassing=True) |
| 505 | ## ccnb-parser-base-attr.h (module 'NDNabstraction'): ns3::CcnbParser::BaseAttr [class] |
| 506 | module.add_class('BaseAttr', parent=root_module['ns3::CcnbParser::Block']) |
| 507 | ## ccnb-parser-base-tag.h (module 'NDNabstraction'): ns3::CcnbParser::BaseTag [class] |
| 508 | module.add_class('BaseTag', parent=root_module['ns3::CcnbParser::Block']) |
| 509 | ## ccnb-parser-blob.h (module 'NDNabstraction'): ns3::CcnbParser::Blob [class] |
| 510 | module.add_class('Blob', parent=root_module['ns3::CcnbParser::Block']) |
| 511 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): ns3::CcnbParser::Dattr [class] |
| 512 | module.add_class('Dattr', parent=root_module['ns3::CcnbParser::BaseAttr']) |
| 513 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::DepthFirstVisitor [class] |
| 514 | module.add_class('DepthFirstVisitor', parent=root_module['ns3::CcnbParser::Visitor']) |
| 515 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): ns3::CcnbParser::Dtag [class] |
| 516 | module.add_class('Dtag', parent=root_module['ns3::CcnbParser::BaseTag']) |
| 517 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguDepthFirstVisitor [class] |
| 518 | module.add_class('NoArguDepthFirstVisitor', parent=root_module['ns3::CcnbParser::NoArguVisitor']) |
| 519 | ## ccnb-parser-non-negative-integer-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonNegativeIntegerVisitor [class] |
| 520 | module.add_class('NonNegativeIntegerVisitor', parent=root_module['ns3::CcnbParser::NoArguDepthFirstVisitor']) |
| 521 | ## ccnb-parser-nonce-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonceVisitor [class] |
| 522 | module.add_class('NonceVisitor', parent=root_module['ns3::CcnbParser::NoArguDepthFirstVisitor']) |
| 523 | ## ccnb-parser-string-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::StringVisitor [class] |
| 524 | module.add_class('StringVisitor', parent=root_module['ns3::CcnbParser::NoArguDepthFirstVisitor']) |
| 525 | ## ccnb-parser-tag.h (module 'NDNabstraction'): ns3::CcnbParser::Tag [class] |
| 526 | module.add_class('Tag', parent=root_module['ns3::CcnbParser::BaseTag']) |
| 527 | ## ccnb-parser-timestamp-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::TimestampVisitor [class] |
| 528 | module.add_class('TimestampVisitor', parent=root_module['ns3::CcnbParser::NoArguDepthFirstVisitor']) |
| 529 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidDepthFirstVisitor [class] |
| 530 | module.add_class('VoidDepthFirstVisitor', parent=root_module['ns3::CcnbParser::VoidVisitor']) |
| 531 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguDepthFirstVisitor [class] |
| 532 | module.add_class('VoidNoArguDepthFirstVisitor', parent=root_module['ns3::CcnbParser::VoidNoArguVisitor']) |
| 533 | ## ccnb-parser-attr.h (module 'NDNabstraction'): ns3::CcnbParser::Attr [class] |
| 534 | module.add_class('Attr', parent=root_module['ns3::CcnbParser::BaseAttr']) |
| 535 | ## ccnb-parser-content-object-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::ContentObjectVisitor [class] |
| 536 | module.add_class('ContentObjectVisitor', parent=root_module['ns3::CcnbParser::VoidDepthFirstVisitor']) |
| 537 | ## ccnb-parser-interest-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::InterestVisitor [class] |
| 538 | module.add_class('InterestVisitor', parent=root_module['ns3::CcnbParser::VoidDepthFirstVisitor']) |
| 539 | ## ccnb-parser-name-components-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NameComponentsVisitor [class] |
| 540 | module.add_class('NameComponentsVisitor', parent=root_module['ns3::CcnbParser::VoidDepthFirstVisitor']) |
| 541 | module.add_container('std::list< ns3::Ptr< ns3::CcnbParser::Block > >', 'ns3::Ptr< ns3::CcnbParser::Block >', container_type='list') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 542 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 543 | def register_types_ns3_FatalImpl(module): |
| 544 | root_module = module.get_root() |
| 545 | |
| 546 | |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 547 | def register_types_ns3_internal(module): |
| 548 | root_module = module.get_root() |
| 549 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 550 | |
| 551 | def register_methods(root_module): |
| 552 | register_Ns3Address_methods(root_module, root_module['ns3::Address']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 553 | register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 554 | register_Ns3AsciiTraceHelper_methods(root_module, root_module['ns3::AsciiTraceHelper']) |
| 555 | register_Ns3AsciiTraceHelperForCcnx_methods(root_module, root_module['ns3::AsciiTraceHelperForCcnx']) |
| 556 | register_Ns3AsciiTraceHelperForDevice_methods(root_module, root_module['ns3::AsciiTraceHelperForDevice']) |
| 557 | register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList']) |
| 558 | register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 559 | register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer']) |
| 560 | register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 561 | register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator']) |
| 562 | register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item']) |
| 563 | register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList']) |
| 564 | register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator']) |
| 565 | register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 566 | register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 567 | register_Ns3CcnxConsumerHelper_methods(root_module, root_module['ns3::CcnxConsumerHelper']) |
| 568 | register_Ns3CcnxContentStoreContainer_methods(root_module, root_module['ns3::CcnxContentStoreContainer']) |
| 569 | register_Ns3CcnxContentStoreEntry_methods(root_module, root_module['ns3::CcnxContentStoreEntry']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 570 | register_Ns3CcnxDecodingHelper_methods(root_module, root_module['ns3::CcnxDecodingHelper']) |
| 571 | register_Ns3CcnxEncodingHelper_methods(root_module, root_module['ns3::CcnxEncodingHelper']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 572 | register_Ns3CcnxFib_methods(root_module, root_module['ns3::CcnxFib']) |
| 573 | register_Ns3CcnxFibEntryContainer_methods(root_module, root_module['ns3::CcnxFibEntryContainer']) |
| 574 | register_Ns3CcnxFibFaceMetric_methods(root_module, root_module['ns3::CcnxFibFaceMetric']) |
| 575 | register_Ns3CcnxFibFaceMetricContainer_methods(root_module, root_module['ns3::CcnxFibFaceMetricContainer']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 576 | register_Ns3CcnxForwardingHelper_methods(root_module, root_module['ns3::CcnxForwardingHelper']) |
| 577 | register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 578 | register_Ns3CcnxInterestSenderHelper_methods(root_module, root_module['ns3::CcnxInterestSenderHelper']) |
| 579 | register_Ns3CcnxPitEntry_methods(root_module, root_module['ns3::CcnxPitEntry']) |
| 580 | register_Ns3CcnxPitEntryAddIncoming_methods(root_module, root_module['ns3::CcnxPitEntry::AddIncoming']) |
| 581 | register_Ns3CcnxPitEntryAddOutgoing_methods(root_module, root_module['ns3::CcnxPitEntry::AddOutgoing']) |
| 582 | register_Ns3CcnxPitEntryClearIncoming_methods(root_module, root_module['ns3::CcnxPitEntry::ClearIncoming']) |
| 583 | register_Ns3CcnxPitEntryDeleteIncoming_methods(root_module, root_module['ns3::CcnxPitEntry::DeleteIncoming']) |
| 584 | register_Ns3CcnxPitEntrySetFibEntry_methods(root_module, root_module['ns3::CcnxPitEntry::SetFibEntry']) |
| 585 | register_Ns3CcnxPitEntryContainer_methods(root_module, root_module['ns3::CcnxPitEntryContainer']) |
| 586 | register_Ns3CcnxPitEntryIncomingFace_methods(root_module, root_module['ns3::CcnxPitEntryIncomingFace']) |
| 587 | register_Ns3CcnxPitEntryIncomingFaceContainer_methods(root_module, root_module['ns3::CcnxPitEntryIncomingFaceContainer']) |
| 588 | register_Ns3CcnxPitEntryNotFound_methods(root_module, root_module['ns3::CcnxPitEntryNotFound']) |
| 589 | register_Ns3CcnxPitEntryOutgoingFace_methods(root_module, root_module['ns3::CcnxPitEntryOutgoingFace']) |
| 590 | register_Ns3CcnxPitEntryOutgoingFaceContainer_methods(root_module, root_module['ns3::CcnxPitEntryOutgoingFaceContainer']) |
| 591 | register_Ns3CcnxProducerHelper_methods(root_module, root_module['ns3::CcnxProducerHelper']) |
| 592 | register_Ns3CcnxRitContainer_methods(root_module, root_module['ns3::CcnxRitContainer']) |
| 593 | register_Ns3CcnxRitEntry_methods(root_module, root_module['ns3::CcnxRitEntry']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 594 | register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 595 | register_Ns3DataRate_methods(root_module, root_module['ns3::DataRate']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 596 | register_Ns3EventId_methods(root_module, root_module['ns3::EventId']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 597 | register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 598 | register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 599 | register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address']) |
| 600 | register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 601 | register_Ns3LogComponent_methods(root_module, root_module['ns3::LogComponent']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 602 | register_Ns3Mac48Address_methods(root_module, root_module['ns3::Mac48Address']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 603 | register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 604 | register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer']) |
| 605 | register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase']) |
| 606 | register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter']) |
| 607 | register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 608 | register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata']) |
| 609 | register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item']) |
| 610 | register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator']) |
| 611 | register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator']) |
| 612 | register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item']) |
| 613 | register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList']) |
| 614 | register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData']) |
| 615 | register_Ns3PcapFile_methods(root_module, root_module['ns3::PcapFile']) |
| 616 | register_Ns3PcapHelper_methods(root_module, root_module['ns3::PcapHelper']) |
| 617 | register_Ns3PcapHelperForCcnx_methods(root_module, root_module['ns3::PcapHelperForCcnx']) |
| 618 | register_Ns3PcapHelperForDevice_methods(root_module, root_module['ns3::PcapHelperForDevice']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 619 | register_Ns3PointToPointHelper_methods(root_module, root_module['ns3::PointToPointHelper']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 620 | register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable']) |
| 621 | register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager']) |
| 622 | register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 623 | register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 624 | register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 625 | register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 626 | register_Ns3StupidInterestGeneratorHelper_methods(root_module, root_module['ns3::StupidInterestGeneratorHelper']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 627 | register_Ns3Tag_methods(root_module, root_module['ns3::Tag']) |
| 628 | register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 629 | register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 630 | register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 631 | register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation']) |
| 632 | register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 633 | register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 634 | register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable']) |
| 635 | register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable']) |
| 636 | register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 637 | register_Ns3Empty_methods(root_module, root_module['ns3::empty']) |
| 638 | register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 639 | register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 640 | register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 641 | register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable']) |
| 642 | register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable']) |
| 643 | register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable']) |
| 644 | register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable']) |
| 645 | register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable']) |
| 646 | register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 647 | register_Ns3Header_methods(root_module, root_module['ns3::Header']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 648 | register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable']) |
| 649 | register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable']) |
| 650 | register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 651 | register_Ns3Object_methods(root_module, root_module['ns3::Object']) |
| 652 | register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 653 | register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 654 | register_Ns3PcapFileWrapper_methods(root_module, root_module['ns3::PcapFileWrapper']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 655 | register_Ns3Queue_methods(root_module, root_module['ns3::Queue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 656 | register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
| 657 | register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
| 658 | register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
| 659 | 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 | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 660 | register_Ns3SimpleRefCount__Ns3CcnbParserBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnbParserBlock__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> >']) |
| 661 | register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >']) |
| 662 | register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >']) |
| 663 | 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 | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 664 | register_Ns3SimpleRefCount__Ns3CcnxRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 665 | 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 | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 666 | register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >']) |
| 667 | register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >']) |
| 668 | register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >']) |
| 669 | 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 | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 670 | register_Ns3Socket_methods(root_module, root_module['ns3::Socket']) |
| 671 | register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 672 | register_Ns3SocketFactory_methods(root_module, root_module['ns3::SocketFactory']) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 673 | register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag']) |
| 674 | register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 675 | register_Ns3Time_methods(root_module, root_module['ns3::Time']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 676 | register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader']) |
| 677 | register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link']) |
| 678 | register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor']) |
| 679 | register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 680 | register_Ns3UdpSocketFactory_methods(root_module, root_module['ns3::UdpSocketFactory']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 681 | register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 682 | register_Ns3Application_methods(root_module, root_module['ns3::Application']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 683 | register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor']) |
| 684 | register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker']) |
| 685 | register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 686 | register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker']) |
| 687 | register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 688 | register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker']) |
| 689 | register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase']) |
| 690 | register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 691 | register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 692 | register_Ns3CcnxConsumer_methods(root_module, root_module['ns3::CcnxConsumer']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 693 | register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader']) |
| 694 | register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 695 | register_Ns3CcnxContentStore_methods(root_module, root_module['ns3::CcnxContentStore']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 696 | register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 697 | register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer']) |
| 698 | register_Ns3CcnxFibEntry_methods(root_module, root_module['ns3::CcnxFibEntry']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 699 | register_Ns3CcnxForwardingStrategy_methods(root_module, root_module['ns3::CcnxForwardingStrategy']) |
| 700 | register_Ns3CcnxInterestHeader_methods(root_module, root_module['ns3::CcnxInterestHeader']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 701 | register_Ns3CcnxInterestSender_methods(root_module, root_module['ns3::CcnxInterestSender']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 702 | register_Ns3CcnxL3Protocol_methods(root_module, root_module['ns3::CcnxL3Protocol']) |
| 703 | register_Ns3CcnxLocalFace_methods(root_module, root_module['ns3::CcnxLocalFace']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 704 | register_Ns3CcnxNameComponents_methods(root_module, root_module['ns3::CcnxNameComponents']) |
| 705 | register_Ns3CcnxNameComponentsChecker_methods(root_module, root_module['ns3::CcnxNameComponentsChecker']) |
| 706 | register_Ns3CcnxNameComponentsValue_methods(root_module, root_module['ns3::CcnxNameComponentsValue']) |
| 707 | register_Ns3CcnxNetDeviceFace_methods(root_module, root_module['ns3::CcnxNetDeviceFace']) |
| 708 | register_Ns3CcnxPit_methods(root_module, root_module['ns3::CcnxPit']) |
| 709 | register_Ns3CcnxProducer_methods(root_module, root_module['ns3::CcnxProducer']) |
| 710 | register_Ns3CcnxRit_methods(root_module, root_module['ns3::CcnxRit']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 711 | register_Ns3CcnxRoute_methods(root_module, root_module['ns3::CcnxRoute']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 712 | register_Ns3DataRateChecker_methods(root_module, root_module['ns3::DataRateChecker']) |
| 713 | register_Ns3DataRateValue_methods(root_module, root_module['ns3::DataRateValue']) |
| 714 | register_Ns3DropTailQueue_methods(root_module, root_module['ns3::DropTailQueue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 715 | register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue']) |
| 716 | register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl']) |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 717 | register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 718 | register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker']) |
| 719 | register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 720 | register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker']) |
| 721 | register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 722 | register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker']) |
| 723 | register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue']) |
| 724 | register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker']) |
| 725 | register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 726 | register_Ns3Mac48AddressChecker_methods(root_module, root_module['ns3::Mac48AddressChecker']) |
| 727 | register_Ns3Mac48AddressValue_methods(root_module, root_module['ns3::Mac48AddressValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 728 | register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 729 | register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 730 | register_Ns3Node_methods(root_module, root_module['ns3::Node']) |
| 731 | register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker']) |
| 732 | register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue']) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 733 | register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper']) |
| 734 | register_Ns3Packet_methods(root_module, root_module['ns3::Packet']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 735 | register_Ns3PointToPointNetDevice_methods(root_module, root_module['ns3::PointToPointNetDevice']) |
| 736 | register_Ns3PointerChecker_methods(root_module, root_module['ns3::PointerChecker']) |
| 737 | register_Ns3PointerValue_methods(root_module, root_module['ns3::PointerValue']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 738 | register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker']) |
| 739 | register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 740 | register_Ns3StringChecker_methods(root_module, root_module['ns3::StringChecker']) |
| 741 | register_Ns3StringValue_methods(root_module, root_module['ns3::StringValue']) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 742 | register_Ns3StupidInterestGenerator_methods(root_module, root_module['ns3::StupidInterestGenerator']) |
| 743 | register_Ns3StupidInterestSink_methods(root_module, root_module['ns3::StupidInterestSink']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 744 | register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker']) |
| 745 | register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue']) |
| 746 | register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker']) |
| 747 | register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 748 | register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 749 | register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker']) |
| 750 | register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue']) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 751 | register_Ns3CcnbParserBlock_methods(root_module, root_module['ns3::CcnbParser::Block']) |
| 752 | register_Ns3CcnbParserCcnbDecodingException_methods(root_module, root_module['ns3::CcnbParser::CcnbDecodingException']) |
| 753 | register_Ns3CcnbParserExt_methods(root_module, root_module['ns3::CcnbParser::Ext']) |
| 754 | register_Ns3CcnbParserNoArguVisitor_methods(root_module, root_module['ns3::CcnbParser::NoArguVisitor']) |
| 755 | register_Ns3CcnbParserUdata_methods(root_module, root_module['ns3::CcnbParser::Udata']) |
| 756 | register_Ns3CcnbParserVisitor_methods(root_module, root_module['ns3::CcnbParser::Visitor']) |
| 757 | register_Ns3CcnbParserVoidNoArguVisitor_methods(root_module, root_module['ns3::CcnbParser::VoidNoArguVisitor']) |
| 758 | register_Ns3CcnbParserVoidVisitor_methods(root_module, root_module['ns3::CcnbParser::VoidVisitor']) |
| 759 | register_Ns3CcnbParserBaseAttr_methods(root_module, root_module['ns3::CcnbParser::BaseAttr']) |
| 760 | register_Ns3CcnbParserBaseTag_methods(root_module, root_module['ns3::CcnbParser::BaseTag']) |
| 761 | register_Ns3CcnbParserBlob_methods(root_module, root_module['ns3::CcnbParser::Blob']) |
| 762 | register_Ns3CcnbParserDattr_methods(root_module, root_module['ns3::CcnbParser::Dattr']) |
| 763 | register_Ns3CcnbParserDepthFirstVisitor_methods(root_module, root_module['ns3::CcnbParser::DepthFirstVisitor']) |
| 764 | register_Ns3CcnbParserDtag_methods(root_module, root_module['ns3::CcnbParser::Dtag']) |
| 765 | register_Ns3CcnbParserNoArguDepthFirstVisitor_methods(root_module, root_module['ns3::CcnbParser::NoArguDepthFirstVisitor']) |
| 766 | register_Ns3CcnbParserNonNegativeIntegerVisitor_methods(root_module, root_module['ns3::CcnbParser::NonNegativeIntegerVisitor']) |
| 767 | register_Ns3CcnbParserNonceVisitor_methods(root_module, root_module['ns3::CcnbParser::NonceVisitor']) |
| 768 | register_Ns3CcnbParserStringVisitor_methods(root_module, root_module['ns3::CcnbParser::StringVisitor']) |
| 769 | register_Ns3CcnbParserTag_methods(root_module, root_module['ns3::CcnbParser::Tag']) |
| 770 | register_Ns3CcnbParserTimestampVisitor_methods(root_module, root_module['ns3::CcnbParser::TimestampVisitor']) |
| 771 | register_Ns3CcnbParserVoidDepthFirstVisitor_methods(root_module, root_module['ns3::CcnbParser::VoidDepthFirstVisitor']) |
| 772 | register_Ns3CcnbParserVoidNoArguDepthFirstVisitor_methods(root_module, root_module['ns3::CcnbParser::VoidNoArguDepthFirstVisitor']) |
| 773 | register_Ns3CcnbParserAttr_methods(root_module, root_module['ns3::CcnbParser::Attr']) |
| 774 | register_Ns3CcnbParserContentObjectVisitor_methods(root_module, root_module['ns3::CcnbParser::ContentObjectVisitor']) |
| 775 | register_Ns3CcnbParserInterestVisitor_methods(root_module, root_module['ns3::CcnbParser::InterestVisitor']) |
| 776 | register_Ns3CcnbParserNameComponentsVisitor_methods(root_module, root_module['ns3::CcnbParser::NameComponentsVisitor']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 777 | return |
| 778 | |
| 779 | def register_Ns3Address_methods(root_module, cls): |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 780 | cls.add_binary_comparison_operator('!=') |
| 781 | cls.add_output_stream_operator() |
| 782 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 783 | cls.add_binary_comparison_operator('<') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 784 | ## address.h (module 'network'): ns3::Address::Address() [constructor] |
| 785 | cls.add_constructor([]) |
| 786 | ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor] |
| 787 | cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 788 | ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor] |
| 789 | cls.add_constructor([param('ns3::Address const &', 'address')]) |
| 790 | ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function] |
| 791 | cls.add_method('CheckCompatible', |
| 792 | 'bool', |
| 793 | [param('uint8_t', 'type'), param('uint8_t', 'len')], |
| 794 | is_const=True) |
| 795 | ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function] |
| 796 | cls.add_method('CopyAllFrom', |
| 797 | 'uint32_t', |
| 798 | [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 799 | ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function] |
| 800 | cls.add_method('CopyAllTo', |
| 801 | 'uint32_t', |
| 802 | [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], |
| 803 | is_const=True) |
| 804 | ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function] |
| 805 | cls.add_method('CopyFrom', |
| 806 | 'uint32_t', |
| 807 | [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
| 808 | ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function] |
| 809 | cls.add_method('CopyTo', |
| 810 | 'uint32_t', |
| 811 | [param('uint8_t *', 'buffer')], |
| 812 | is_const=True) |
| 813 | ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function] |
| 814 | cls.add_method('Deserialize', |
| 815 | 'void', |
| 816 | [param('ns3::TagBuffer', 'buffer')]) |
| 817 | ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function] |
| 818 | cls.add_method('GetLength', |
| 819 | 'uint8_t', |
| 820 | [], |
| 821 | is_const=True) |
| 822 | ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function] |
| 823 | cls.add_method('GetSerializedSize', |
| 824 | 'uint32_t', |
| 825 | [], |
| 826 | is_const=True) |
| 827 | ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function] |
| 828 | cls.add_method('IsInvalid', |
| 829 | 'bool', |
| 830 | [], |
| 831 | is_const=True) |
| 832 | ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function] |
| 833 | cls.add_method('IsMatchingType', |
| 834 | 'bool', |
| 835 | [param('uint8_t', 'type')], |
| 836 | is_const=True) |
| 837 | ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function] |
| 838 | cls.add_method('Register', |
| 839 | 'uint8_t', |
| 840 | [], |
| 841 | is_static=True) |
| 842 | ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function] |
| 843 | cls.add_method('Serialize', |
| 844 | 'void', |
| 845 | [param('ns3::TagBuffer', 'buffer')], |
| 846 | is_const=True) |
| 847 | return |
| 848 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 849 | def register_Ns3ApplicationContainer_methods(root_module, cls): |
| 850 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor] |
| 851 | cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')]) |
| 852 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor] |
| 853 | cls.add_constructor([]) |
| 854 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor] |
| 855 | cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')]) |
| 856 | ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor] |
| 857 | cls.add_constructor([param('std::string', 'name')]) |
| 858 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function] |
| 859 | cls.add_method('Add', |
| 860 | 'void', |
| 861 | [param('ns3::ApplicationContainer', 'other')]) |
| 862 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function] |
| 863 | cls.add_method('Add', |
| 864 | 'void', |
| 865 | [param('ns3::Ptr< ns3::Application >', 'application')]) |
| 866 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function] |
| 867 | cls.add_method('Add', |
| 868 | 'void', |
| 869 | [param('std::string', 'name')]) |
| 870 | ## 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] |
| 871 | cls.add_method('Begin', |
| 872 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', |
| 873 | [], |
| 874 | is_const=True) |
| 875 | ## 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] |
| 876 | cls.add_method('End', |
| 877 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', |
| 878 | [], |
| 879 | is_const=True) |
| 880 | ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function] |
| 881 | cls.add_method('Get', |
| 882 | 'ns3::Ptr< ns3::Application >', |
| 883 | [param('uint32_t', 'i')], |
| 884 | is_const=True) |
| 885 | ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function] |
| 886 | cls.add_method('GetN', |
| 887 | 'uint32_t', |
| 888 | [], |
| 889 | is_const=True) |
| 890 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function] |
| 891 | cls.add_method('Start', |
| 892 | 'void', |
| 893 | [param('ns3::Time', 'start')]) |
| 894 | ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function] |
| 895 | cls.add_method('Stop', |
| 896 | 'void', |
| 897 | [param('ns3::Time', 'stop')]) |
| 898 | return |
| 899 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 900 | def register_Ns3AsciiTraceHelper_methods(root_module, cls): |
| 901 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper(ns3::AsciiTraceHelper const & arg0) [copy constructor] |
| 902 | cls.add_constructor([param('ns3::AsciiTraceHelper const &', 'arg0')]) |
| 903 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 904 | cls.add_constructor([]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 905 | ## trace-helper.h (module 'network'): ns3::Ptr<ns3::OutputStreamWrapper> ns3::AsciiTraceHelper::CreateFileStream(std::string filename, std::_Ios_Openmode filemode=std::ios_base::out) [member function] |
| 906 | cls.add_method('CreateFileStream', |
| 907 | 'ns3::Ptr< ns3::OutputStreamWrapper >', |
| 908 | [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode', default_value='std::ios_base::out')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 909 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 910 | cls.add_method('DefaultDequeueSinkWithContext', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 911 | 'void', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 912 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 913 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 914 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 915 | cls.add_method('DefaultDequeueSinkWithoutContext', |
| 916 | 'void', |
| 917 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 918 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 919 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 920 | cls.add_method('DefaultDropSinkWithContext', |
| 921 | 'void', |
| 922 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 923 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 924 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 925 | cls.add_method('DefaultDropSinkWithoutContext', |
| 926 | 'void', |
| 927 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 928 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 929 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 930 | cls.add_method('DefaultEnqueueSinkWithContext', |
| 931 | 'void', |
| 932 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 933 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 934 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 935 | cls.add_method('DefaultEnqueueSinkWithoutContext', |
| 936 | 'void', |
| 937 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 938 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 939 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 940 | cls.add_method('DefaultReceiveSinkWithContext', |
| 941 | 'void', |
| 942 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 943 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 944 | ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 945 | cls.add_method('DefaultReceiveSinkWithoutContext', |
| 946 | 'void', |
| 947 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], |
| 948 | is_static=True) |
| 949 | ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function] |
| 950 | cls.add_method('GetFilenameFromDevice', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 951 | 'std::string', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 952 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')]) |
| 953 | ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function] |
| 954 | cls.add_method('GetFilenameFromInterfacePair', |
| 955 | 'std::string', |
| 956 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')]) |
| 957 | return |
| 958 | |
| 959 | def register_Ns3AsciiTraceHelperForCcnx_methods(root_module, cls): |
| 960 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx::AsciiTraceHelperForCcnx(ns3::AsciiTraceHelperForCcnx const & arg0) [copy constructor] |
| 961 | cls.add_constructor([param('ns3::AsciiTraceHelperForCcnx const &', 'arg0')]) |
| 962 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx::AsciiTraceHelperForCcnx() [constructor] |
| 963 | cls.add_constructor([]) |
| 964 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename=false) [member function] |
| 965 | cls.add_method('EnableAsciiCcnx', |
| 966 | 'void', |
| 967 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')]) |
| 968 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface) [member function] |
| 969 | cls.add_method('EnableAsciiCcnx', |
| 970 | 'void', |
| 971 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface')]) |
| 972 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, std::string ccnxName, uint32_t interface, bool explicitFilename=false) [member function] |
| 973 | cls.add_method('EnableAsciiCcnx', |
| 974 | 'void', |
| 975 | [param('std::string', 'prefix'), param('std::string', 'ccnxName'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')]) |
| 976 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ccnxName, uint32_t interface) [member function] |
| 977 | cls.add_method('EnableAsciiCcnx', |
| 978 | 'void', |
| 979 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ccnxName'), param('uint32_t', 'interface')]) |
| 980 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::CcnxFaceContainer c) [member function] |
| 981 | cls.add_method('EnableAsciiCcnx', |
| 982 | 'void', |
| 983 | [param('std::string', 'prefix'), param('ns3::CcnxFaceContainer', 'c')]) |
| 984 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::CcnxFaceContainer c) [member function] |
| 985 | cls.add_method('EnableAsciiCcnx', |
| 986 | 'void', |
| 987 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::CcnxFaceContainer', 'c')]) |
| 988 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::NodeContainer n) [member function] |
| 989 | cls.add_method('EnableAsciiCcnx', |
| 990 | 'void', |
| 991 | [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')]) |
| 992 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function] |
| 993 | cls.add_method('EnableAsciiCcnx', |
| 994 | 'void', |
| 995 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')]) |
| 996 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function] |
| 997 | cls.add_method('EnableAsciiCcnx', |
| 998 | 'void', |
| 999 | [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')]) |
| 1000 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t interface, bool explicitFilename) [member function] |
| 1001 | cls.add_method('EnableAsciiCcnx', |
| 1002 | 'void', |
| 1003 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')]) |
| 1004 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxAll(std::string prefix) [member function] |
| 1005 | cls.add_method('EnableAsciiCcnxAll', |
| 1006 | 'void', |
| 1007 | [param('std::string', 'prefix')]) |
| 1008 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function] |
| 1009 | cls.add_method('EnableAsciiCcnxAll', |
| 1010 | 'void', |
| 1011 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')]) |
| 1012 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function] |
| 1013 | cls.add_method('EnableAsciiCcnxInternal', |
| 1014 | 'void', |
| 1015 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')], |
| 1016 | is_pure_virtual=True, is_virtual=True) |
| 1017 | return |
| 1018 | |
| 1019 | def register_Ns3AsciiTraceHelperForDevice_methods(root_module, cls): |
| 1020 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice(ns3::AsciiTraceHelperForDevice const & arg0) [copy constructor] |
| 1021 | cls.add_constructor([param('ns3::AsciiTraceHelperForDevice const &', 'arg0')]) |
| 1022 | ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice() [constructor] |
| 1023 | cls.add_constructor([]) |
| 1024 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename=false) [member function] |
| 1025 | cls.add_method('EnableAscii', |
| 1026 | 'void', |
| 1027 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename', default_value='false')]) |
| 1028 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::NetDevice> nd) [member function] |
| 1029 | cls.add_method('EnableAscii', |
| 1030 | 'void', |
| 1031 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) |
| 1032 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, std::string ndName, bool explicitFilename=false) [member function] |
| 1033 | cls.add_method('EnableAscii', |
| 1034 | 'void', |
| 1035 | [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'explicitFilename', default_value='false')]) |
| 1036 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ndName) [member function] |
| 1037 | cls.add_method('EnableAscii', |
| 1038 | 'void', |
| 1039 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ndName')]) |
| 1040 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NetDeviceContainer d) [member function] |
| 1041 | cls.add_method('EnableAscii', |
| 1042 | 'void', |
| 1043 | [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd')]) |
| 1044 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NetDeviceContainer d) [member function] |
| 1045 | cls.add_method('EnableAscii', |
| 1046 | 'void', |
| 1047 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NetDeviceContainer', 'd')]) |
| 1048 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NodeContainer n) [member function] |
| 1049 | cls.add_method('EnableAscii', |
| 1050 | 'void', |
| 1051 | [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')]) |
| 1052 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function] |
| 1053 | cls.add_method('EnableAscii', |
| 1054 | 'void', |
| 1055 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')]) |
| 1056 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function] |
| 1057 | cls.add_method('EnableAscii', |
| 1058 | 'void', |
| 1059 | [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')]) |
| 1060 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t deviceid) [member function] |
| 1061 | cls.add_method('EnableAscii', |
| 1062 | 'void', |
| 1063 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')]) |
| 1064 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(std::string prefix) [member function] |
| 1065 | cls.add_method('EnableAsciiAll', |
| 1066 | 'void', |
| 1067 | [param('std::string', 'prefix')]) |
| 1068 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function] |
| 1069 | cls.add_method('EnableAsciiAll', |
| 1070 | 'void', |
| 1071 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')]) |
| 1072 | ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename) [member function] |
| 1073 | cls.add_method('EnableAsciiInternal', |
| 1074 | 'void', |
| 1075 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename')], |
| 1076 | is_pure_virtual=True, is_virtual=True) |
| 1077 | return |
| 1078 | |
| 1079 | def register_Ns3AttributeConstructionList_methods(root_module, cls): |
| 1080 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor] |
| 1081 | cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')]) |
| 1082 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor] |
| 1083 | cls.add_constructor([]) |
| 1084 | ## 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] |
| 1085 | cls.add_method('Add', |
| 1086 | 'void', |
| 1087 | [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')]) |
| 1088 | ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function] |
| 1089 | cls.add_method('Begin', |
| 1090 | 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1091 | [], |
| 1092 | is_const=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1093 | ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function] |
| 1094 | cls.add_method('End', |
| 1095 | 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
| 1096 | [], |
| 1097 | is_const=True) |
| 1098 | ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 1099 | cls.add_method('Find', |
| 1100 | 'ns3::Ptr< ns3::AttributeValue >', |
| 1101 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 1102 | is_const=True) |
| 1103 | return |
| 1104 | |
| 1105 | def register_Ns3AttributeConstructionListItem_methods(root_module, cls): |
| 1106 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor] |
| 1107 | cls.add_constructor([]) |
| 1108 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor] |
| 1109 | cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')]) |
| 1110 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable] |
| 1111 | cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
| 1112 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable] |
| 1113 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
| 1114 | ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable] |
| 1115 | cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1116 | return |
| 1117 | |
| 1118 | def register_Ns3Buffer_methods(root_module, cls): |
| 1119 | ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor] |
| 1120 | cls.add_constructor([]) |
| 1121 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor] |
| 1122 | cls.add_constructor([param('uint32_t', 'dataSize')]) |
| 1123 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor] |
| 1124 | cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')]) |
| 1125 | ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor] |
| 1126 | cls.add_constructor([param('ns3::Buffer const &', 'o')]) |
| 1127 | ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function] |
| 1128 | cls.add_method('AddAtEnd', |
| 1129 | 'bool', |
| 1130 | [param('uint32_t', 'end')]) |
| 1131 | ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function] |
| 1132 | cls.add_method('AddAtEnd', |
| 1133 | 'void', |
| 1134 | [param('ns3::Buffer const &', 'o')]) |
| 1135 | ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function] |
| 1136 | cls.add_method('AddAtStart', |
| 1137 | 'bool', |
| 1138 | [param('uint32_t', 'start')]) |
| 1139 | ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function] |
| 1140 | cls.add_method('Begin', |
| 1141 | 'ns3::Buffer::Iterator', |
| 1142 | [], |
| 1143 | is_const=True) |
| 1144 | ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function] |
| 1145 | cls.add_method('CopyData', |
| 1146 | 'void', |
| 1147 | [param('std::ostream *', 'os'), param('uint32_t', 'size')], |
| 1148 | is_const=True) |
| 1149 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function] |
| 1150 | cls.add_method('CopyData', |
| 1151 | 'uint32_t', |
| 1152 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], |
| 1153 | is_const=True) |
| 1154 | ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function] |
| 1155 | cls.add_method('CreateFragment', |
| 1156 | 'ns3::Buffer', |
| 1157 | [param('uint32_t', 'start'), param('uint32_t', 'length')], |
| 1158 | is_const=True) |
| 1159 | ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function] |
| 1160 | cls.add_method('CreateFullCopy', |
| 1161 | 'ns3::Buffer', |
| 1162 | [], |
| 1163 | is_const=True) |
| 1164 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function] |
| 1165 | cls.add_method('Deserialize', |
| 1166 | 'uint32_t', |
| 1167 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 1168 | ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function] |
| 1169 | cls.add_method('End', |
| 1170 | 'ns3::Buffer::Iterator', |
| 1171 | [], |
| 1172 | is_const=True) |
| 1173 | ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function] |
| 1174 | cls.add_method('GetCurrentEndOffset', |
| 1175 | 'int32_t', |
| 1176 | [], |
| 1177 | is_const=True) |
| 1178 | ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function] |
| 1179 | cls.add_method('GetCurrentStartOffset', |
| 1180 | 'int32_t', |
| 1181 | [], |
| 1182 | is_const=True) |
| 1183 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function] |
| 1184 | cls.add_method('GetSerializedSize', |
| 1185 | 'uint32_t', |
| 1186 | [], |
| 1187 | is_const=True) |
| 1188 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function] |
| 1189 | cls.add_method('GetSize', |
| 1190 | 'uint32_t', |
| 1191 | [], |
| 1192 | is_const=True) |
| 1193 | ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function] |
| 1194 | cls.add_method('PeekData', |
| 1195 | 'uint8_t const *', |
| 1196 | [], |
| 1197 | is_const=True) |
| 1198 | ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function] |
| 1199 | cls.add_method('RemoveAtEnd', |
| 1200 | 'void', |
| 1201 | [param('uint32_t', 'end')]) |
| 1202 | ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function] |
| 1203 | cls.add_method('RemoveAtStart', |
| 1204 | 'void', |
| 1205 | [param('uint32_t', 'start')]) |
| 1206 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 1207 | cls.add_method('Serialize', |
| 1208 | 'uint32_t', |
| 1209 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 1210 | is_const=True) |
| 1211 | return |
| 1212 | |
| 1213 | def register_Ns3BufferIterator_methods(root_module, cls): |
| 1214 | ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor] |
| 1215 | cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')]) |
| 1216 | ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor] |
| 1217 | cls.add_constructor([]) |
| 1218 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function] |
| 1219 | cls.add_method('CalculateIpChecksum', |
| 1220 | 'uint16_t', |
| 1221 | [param('uint16_t', 'size')]) |
| 1222 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function] |
| 1223 | cls.add_method('CalculateIpChecksum', |
| 1224 | 'uint16_t', |
| 1225 | [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')]) |
| 1226 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function] |
| 1227 | cls.add_method('GetDistanceFrom', |
| 1228 | 'uint32_t', |
| 1229 | [param('ns3::Buffer::Iterator const &', 'o')], |
| 1230 | is_const=True) |
| 1231 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function] |
| 1232 | cls.add_method('GetSize', |
| 1233 | 'uint32_t', |
| 1234 | [], |
| 1235 | is_const=True) |
| 1236 | ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function] |
| 1237 | cls.add_method('IsEnd', |
| 1238 | 'bool', |
| 1239 | [], |
| 1240 | is_const=True) |
| 1241 | ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function] |
| 1242 | cls.add_method('IsStart', |
| 1243 | 'bool', |
| 1244 | [], |
| 1245 | is_const=True) |
| 1246 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function] |
| 1247 | cls.add_method('Next', |
| 1248 | 'void', |
| 1249 | []) |
| 1250 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function] |
| 1251 | cls.add_method('Next', |
| 1252 | 'void', |
| 1253 | [param('uint32_t', 'delta')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1254 | ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function] |
| 1255 | cls.add_method('PeekU8', |
| 1256 | 'uint8_t', |
| 1257 | []) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1258 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function] |
| 1259 | cls.add_method('Prev', |
| 1260 | 'void', |
| 1261 | []) |
| 1262 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function] |
| 1263 | cls.add_method('Prev', |
| 1264 | 'void', |
| 1265 | [param('uint32_t', 'delta')]) |
| 1266 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function] |
| 1267 | cls.add_method('Read', |
| 1268 | 'void', |
| 1269 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1270 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function] |
| 1271 | cls.add_method('Read', |
| 1272 | 'void', |
| 1273 | [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1274 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function] |
| 1275 | cls.add_method('ReadLsbtohU16', |
| 1276 | 'uint16_t', |
| 1277 | []) |
| 1278 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function] |
| 1279 | cls.add_method('ReadLsbtohU32', |
| 1280 | 'uint32_t', |
| 1281 | []) |
| 1282 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function] |
| 1283 | cls.add_method('ReadLsbtohU64', |
| 1284 | 'uint64_t', |
| 1285 | []) |
| 1286 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function] |
| 1287 | cls.add_method('ReadNtohU16', |
| 1288 | 'uint16_t', |
| 1289 | []) |
| 1290 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function] |
| 1291 | cls.add_method('ReadNtohU32', |
| 1292 | 'uint32_t', |
| 1293 | []) |
| 1294 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function] |
| 1295 | cls.add_method('ReadNtohU64', |
| 1296 | 'uint64_t', |
| 1297 | []) |
| 1298 | ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function] |
| 1299 | cls.add_method('ReadU16', |
| 1300 | 'uint16_t', |
| 1301 | []) |
| 1302 | ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function] |
| 1303 | cls.add_method('ReadU32', |
| 1304 | 'uint32_t', |
| 1305 | []) |
| 1306 | ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function] |
| 1307 | cls.add_method('ReadU64', |
| 1308 | 'uint64_t', |
| 1309 | []) |
| 1310 | ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function] |
| 1311 | cls.add_method('ReadU8', |
| 1312 | 'uint8_t', |
| 1313 | []) |
| 1314 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function] |
| 1315 | cls.add_method('Write', |
| 1316 | 'void', |
| 1317 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 1318 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function] |
| 1319 | cls.add_method('Write', |
| 1320 | 'void', |
| 1321 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')]) |
| 1322 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function] |
| 1323 | cls.add_method('WriteHtolsbU16', |
| 1324 | 'void', |
| 1325 | [param('uint16_t', 'data')]) |
| 1326 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function] |
| 1327 | cls.add_method('WriteHtolsbU32', |
| 1328 | 'void', |
| 1329 | [param('uint32_t', 'data')]) |
| 1330 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function] |
| 1331 | cls.add_method('WriteHtolsbU64', |
| 1332 | 'void', |
| 1333 | [param('uint64_t', 'data')]) |
| 1334 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function] |
| 1335 | cls.add_method('WriteHtonU16', |
| 1336 | 'void', |
| 1337 | [param('uint16_t', 'data')]) |
| 1338 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function] |
| 1339 | cls.add_method('WriteHtonU32', |
| 1340 | 'void', |
| 1341 | [param('uint32_t', 'data')]) |
| 1342 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function] |
| 1343 | cls.add_method('WriteHtonU64', |
| 1344 | 'void', |
| 1345 | [param('uint64_t', 'data')]) |
| 1346 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function] |
| 1347 | cls.add_method('WriteU16', |
| 1348 | 'void', |
| 1349 | [param('uint16_t', 'data')]) |
| 1350 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function] |
| 1351 | cls.add_method('WriteU32', |
| 1352 | 'void', |
| 1353 | [param('uint32_t', 'data')]) |
| 1354 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function] |
| 1355 | cls.add_method('WriteU64', |
| 1356 | 'void', |
| 1357 | [param('uint64_t', 'data')]) |
| 1358 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function] |
| 1359 | cls.add_method('WriteU8', |
| 1360 | 'void', |
| 1361 | [param('uint8_t', 'data')]) |
| 1362 | ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function] |
| 1363 | cls.add_method('WriteU8', |
| 1364 | 'void', |
| 1365 | [param('uint8_t', 'data'), param('uint32_t', 'len')]) |
| 1366 | return |
| 1367 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1368 | def register_Ns3ByteTagIterator_methods(root_module, cls): |
| 1369 | ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor] |
| 1370 | cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')]) |
| 1371 | ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function] |
| 1372 | cls.add_method('HasNext', |
| 1373 | 'bool', |
| 1374 | [], |
| 1375 | is_const=True) |
| 1376 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function] |
| 1377 | cls.add_method('Next', |
| 1378 | 'ns3::ByteTagIterator::Item', |
| 1379 | []) |
| 1380 | return |
| 1381 | |
| 1382 | def register_Ns3ByteTagIteratorItem_methods(root_module, cls): |
| 1383 | ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor] |
| 1384 | cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')]) |
| 1385 | ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function] |
| 1386 | cls.add_method('GetEnd', |
| 1387 | 'uint32_t', |
| 1388 | [], |
| 1389 | is_const=True) |
| 1390 | ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function] |
| 1391 | cls.add_method('GetStart', |
| 1392 | 'uint32_t', |
| 1393 | [], |
| 1394 | is_const=True) |
| 1395 | ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function] |
| 1396 | cls.add_method('GetTag', |
| 1397 | 'void', |
| 1398 | [param('ns3::Tag &', 'tag')], |
| 1399 | is_const=True) |
| 1400 | ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function] |
| 1401 | cls.add_method('GetTypeId', |
| 1402 | 'ns3::TypeId', |
| 1403 | [], |
| 1404 | is_const=True) |
| 1405 | return |
| 1406 | |
| 1407 | def register_Ns3ByteTagList_methods(root_module, cls): |
| 1408 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor] |
| 1409 | cls.add_constructor([]) |
| 1410 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor] |
| 1411 | cls.add_constructor([param('ns3::ByteTagList const &', 'o')]) |
| 1412 | ## 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] |
| 1413 | cls.add_method('Add', |
| 1414 | 'ns3::TagBuffer', |
| 1415 | [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')]) |
| 1416 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function] |
| 1417 | cls.add_method('Add', |
| 1418 | 'void', |
| 1419 | [param('ns3::ByteTagList const &', 'o')]) |
| 1420 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function] |
| 1421 | cls.add_method('AddAtEnd', |
| 1422 | 'void', |
| 1423 | [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')]) |
| 1424 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function] |
| 1425 | cls.add_method('AddAtStart', |
| 1426 | 'void', |
| 1427 | [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')]) |
| 1428 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function] |
| 1429 | cls.add_method('Begin', |
| 1430 | 'ns3::ByteTagList::Iterator', |
| 1431 | [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], |
| 1432 | is_const=True) |
| 1433 | ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function] |
| 1434 | cls.add_method('RemoveAll', |
| 1435 | 'void', |
| 1436 | []) |
| 1437 | return |
| 1438 | |
| 1439 | def register_Ns3ByteTagListIterator_methods(root_module, cls): |
| 1440 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor] |
| 1441 | cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')]) |
| 1442 | ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function] |
| 1443 | cls.add_method('GetOffsetStart', |
| 1444 | 'uint32_t', |
| 1445 | [], |
| 1446 | is_const=True) |
| 1447 | ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function] |
| 1448 | cls.add_method('HasNext', |
| 1449 | 'bool', |
| 1450 | [], |
| 1451 | is_const=True) |
| 1452 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function] |
| 1453 | cls.add_method('Next', |
| 1454 | 'ns3::ByteTagList::Iterator::Item', |
| 1455 | []) |
| 1456 | return |
| 1457 | |
| 1458 | def register_Ns3ByteTagListIteratorItem_methods(root_module, cls): |
| 1459 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor] |
| 1460 | cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')]) |
| 1461 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor] |
| 1462 | cls.add_constructor([param('ns3::TagBuffer', 'buf')]) |
| 1463 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable] |
| 1464 | cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False) |
| 1465 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable] |
| 1466 | cls.add_instance_attribute('end', 'int32_t', is_const=False) |
| 1467 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable] |
| 1468 | cls.add_instance_attribute('size', 'uint32_t', is_const=False) |
| 1469 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable] |
| 1470 | cls.add_instance_attribute('start', 'int32_t', is_const=False) |
| 1471 | ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable] |
| 1472 | cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False) |
| 1473 | return |
| 1474 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1475 | def register_Ns3CallbackBase_methods(root_module, cls): |
| 1476 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor] |
| 1477 | cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')]) |
| 1478 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor] |
| 1479 | cls.add_constructor([]) |
| 1480 | ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function] |
| 1481 | cls.add_method('GetImpl', |
| 1482 | 'ns3::Ptr< ns3::CallbackImplBase >', |
| 1483 | [], |
| 1484 | is_const=True) |
| 1485 | ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor] |
| 1486 | cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], |
| 1487 | visibility='protected') |
| 1488 | ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function] |
| 1489 | cls.add_method('Demangle', |
| 1490 | 'std::string', |
| 1491 | [param('std::string const &', 'mangled')], |
| 1492 | is_static=True, visibility='protected') |
| 1493 | return |
| 1494 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1495 | def register_Ns3CcnxConsumerHelper_methods(root_module, cls): |
| 1496 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::CcnxConsumerHelper::CcnxConsumerHelper(ns3::CcnxConsumerHelper const & arg0) [copy constructor] |
| 1497 | cls.add_constructor([param('ns3::CcnxConsumerHelper const &', 'arg0')]) |
| 1498 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::CcnxConsumerHelper::CcnxConsumerHelper(ns3::Ptr<ns3::CcnxNameComponents> interestName) [constructor] |
| 1499 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents >', 'interestName')]) |
| 1500 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxConsumerHelper::Install(ns3::NodeContainer c) [member function] |
| 1501 | cls.add_method('Install', |
| 1502 | 'ns3::ApplicationContainer', |
| 1503 | [param('ns3::NodeContainer', 'c')]) |
| 1504 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxConsumerHelper::Install(ns3::Ptr<ns3::Node> node) [member function] |
| 1505 | cls.add_method('Install', |
| 1506 | 'ns3::ApplicationContainer', |
| 1507 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 1508 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxConsumerHelper::Install(std::string nodeName) [member function] |
| 1509 | cls.add_method('Install', |
| 1510 | 'ns3::ApplicationContainer', |
| 1511 | [param('std::string', 'nodeName')]) |
| 1512 | ## ccnx-consumer-helper.h (module 'NDNabstraction'): void ns3::CcnxConsumerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 1513 | cls.add_method('SetAttribute', |
| 1514 | 'void', |
| 1515 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 1516 | return |
| 1517 | |
| 1518 | def register_Ns3CcnxContentStoreContainer_methods(root_module, cls): |
| 1519 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreContainer::CcnxContentStoreContainer() [constructor] |
| 1520 | cls.add_constructor([]) |
| 1521 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreContainer::CcnxContentStoreContainer(ns3::CcnxContentStoreContainer const & arg0) [copy constructor] |
| 1522 | cls.add_constructor([param('ns3::CcnxContentStoreContainer const &', 'arg0')]) |
| 1523 | return |
| 1524 | |
| 1525 | def register_Ns3CcnxContentStoreEntry_methods(root_module, cls): |
| 1526 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreEntry::CcnxContentStoreEntry(ns3::CcnxContentStoreEntry const & arg0) [copy constructor] |
| 1527 | cls.add_constructor([param('ns3::CcnxContentStoreEntry const &', 'arg0')]) |
| 1528 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStoreEntry::CcnxContentStoreEntry(ns3::Ptr<ns3::CcnxContentObjectHeader> header, ns3::Ptr<ns3::Packet const> packet) [constructor] |
| 1529 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxContentObjectHeader >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
| 1530 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::Ptr<ns3::Packet> ns3::CcnxContentStoreEntry::GetFullyFormedCcnxPacket() const [member function] |
| 1531 | cls.add_method('GetFullyFormedCcnxPacket', |
| 1532 | 'ns3::Ptr< ns3::Packet >', |
| 1533 | [], |
| 1534 | is_const=True) |
| 1535 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxContentObjectHeader const> ns3::CcnxContentStoreEntry::GetHeader() const [member function] |
| 1536 | cls.add_method('GetHeader', |
| 1537 | 'ns3::Ptr< ns3::CcnxContentObjectHeader const >', |
| 1538 | [], |
| 1539 | is_const=True) |
| 1540 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxContentStoreEntry::GetName() const [member function] |
| 1541 | cls.add_method('GetName', |
| 1542 | 'ns3::CcnxNameComponents const &', |
| 1543 | [], |
| 1544 | is_const=True) |
| 1545 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::Ptr<ns3::Packet const> ns3::CcnxContentStoreEntry::GetPacket() const [member function] |
| 1546 | cls.add_method('GetPacket', |
| 1547 | 'ns3::Ptr< ns3::Packet const >', |
| 1548 | [], |
| 1549 | is_const=True) |
| 1550 | return |
| 1551 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1552 | def register_Ns3CcnxDecodingHelper_methods(root_module, cls): |
| 1553 | ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper::CcnxDecodingHelper() [constructor] |
| 1554 | cls.add_constructor([]) |
| 1555 | ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper::CcnxDecodingHelper(ns3::CcnxDecodingHelper const & arg0) [copy constructor] |
| 1556 | cls.add_constructor([param('ns3::CcnxDecodingHelper const &', 'arg0')]) |
| 1557 | ## ccnx-decoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxDecodingHelper::Deserialize(ns3::Buffer::Iterator start, ns3::CcnxInterestHeader const & interest) [member function] |
| 1558 | cls.add_method('Deserialize', |
| 1559 | 'size_t', |
| 1560 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxInterestHeader const &', 'interest')], |
| 1561 | is_static=True) |
| 1562 | ## ccnx-decoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxDecodingHelper::Deserialize(ns3::Buffer::Iterator start, ns3::CcnxContentObjectHeader const & contentObject) [member function] |
| 1563 | cls.add_method('Deserialize', |
| 1564 | 'size_t', |
| 1565 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxContentObjectHeader const &', 'contentObject')], |
| 1566 | is_static=True) |
| 1567 | return |
| 1568 | |
| 1569 | def register_Ns3CcnxEncodingHelper_methods(root_module, cls): |
| 1570 | ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper::CcnxEncodingHelper() [constructor] |
| 1571 | cls.add_constructor([]) |
| 1572 | ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper::CcnxEncodingHelper(ns3::CcnxEncodingHelper const & arg0) [copy constructor] |
| 1573 | cls.add_constructor([param('ns3::CcnxEncodingHelper const &', 'arg0')]) |
| 1574 | ## ccnx-encoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxEncodingHelper::Serialize(ns3::Buffer::Iterator start, ns3::CcnxInterestHeader const & interest) [member function] |
| 1575 | cls.add_method('Serialize', |
| 1576 | 'size_t', |
| 1577 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxInterestHeader const &', 'interest')], |
| 1578 | is_static=True) |
| 1579 | ## ccnx-encoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxEncodingHelper::Serialize(ns3::Buffer::Iterator start, ns3::CcnxContentObjectHeader const & contentObject) [member function] |
| 1580 | cls.add_method('Serialize', |
| 1581 | 'size_t', |
| 1582 | [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxContentObjectHeader const &', 'contentObject')], |
| 1583 | is_static=True) |
| 1584 | return |
| 1585 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1586 | def register_Ns3CcnxFib_methods(root_module, cls): |
| 1587 | cls.add_output_stream_operator() |
| 1588 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::CcnxFib(ns3::CcnxFib const & arg0) [copy constructor] |
| 1589 | cls.add_constructor([param('ns3::CcnxFib const &', 'arg0')]) |
| 1590 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::CcnxFib(ns3::Ptr<ns3::Ccnx> node) [constructor] |
| 1591 | cls.add_constructor([param('ns3::Ptr< ns3::Ccnx >', 'node')]) |
| 1592 | ## ccnx-fib.h (module 'NDNabstraction'): std::pair<boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_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> > >,bool> ns3::CcnxFib::LongestPrefixMatch(ns3::CcnxInterestHeader const & interest) const [member function] |
| 1593 | cls.add_method('LongestPrefixMatch', |
| 1594 | 'std::pair< boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_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 > > >, bool >', |
| 1595 | [param('ns3::CcnxInterestHeader const &', 'interest')], |
| 1596 | is_const=True) |
| 1597 | return |
| 1598 | |
| 1599 | def register_Ns3CcnxFibEntryContainer_methods(root_module, cls): |
| 1600 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1601 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1602 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer(ns3::CcnxFibEntryContainer const & arg0) [copy constructor] |
| 1603 | cls.add_constructor([param('ns3::CcnxFibEntryContainer const &', 'arg0')]) |
| 1604 | return |
| 1605 | |
| 1606 | def register_Ns3CcnxFibFaceMetric_methods(root_module, cls): |
| 1607 | cls.add_output_stream_operator() |
| 1608 | cls.add_binary_comparison_operator('<') |
| 1609 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::CcnxFibFaceMetric const & arg0) [copy constructor] |
| 1610 | cls.add_constructor([param('ns3::CcnxFibFaceMetric const &', 'arg0')]) |
| 1611 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::Ptr<ns3::CcnxFace> face, int cost) [constructor] |
| 1612 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int', 'cost')]) |
| 1613 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibFaceMetric::GetFace() const [member function] |
| 1614 | cls.add_method('GetFace', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1615 | 'ns3::Ptr< ns3::CcnxFace >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1616 | [], |
| 1617 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1618 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_face [variable] |
| 1619 | cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False) |
| 1620 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_routingCost [variable] |
| 1621 | cls.add_instance_attribute('m_routingCost', 'uint32_t', is_const=False) |
| 1622 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_rttVar [variable] |
| 1623 | cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False) |
| 1624 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_sRtt [variable] |
| 1625 | cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False) |
| 1626 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_status [variable] |
| 1627 | cls.add_instance_attribute('m_status', 'uint8_t', is_const=False) |
| 1628 | return |
| 1629 | |
| 1630 | def register_Ns3CcnxFibFaceMetricContainer_methods(root_module, cls): |
| 1631 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer() [constructor] |
| 1632 | cls.add_constructor([]) |
| 1633 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer(ns3::CcnxFibFaceMetricContainer const & arg0) [copy constructor] |
| 1634 | cls.add_constructor([param('ns3::CcnxFibFaceMetricContainer const &', 'arg0')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1635 | return |
| 1636 | |
| 1637 | def register_Ns3CcnxForwardingHelper_methods(root_module, cls): |
| 1638 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper::CcnxForwardingHelper() [constructor] |
| 1639 | cls.add_constructor([]) |
| 1640 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper::CcnxForwardingHelper(ns3::CcnxForwardingHelper const & arg0) [copy constructor] |
| 1641 | cls.add_constructor([param('ns3::CcnxForwardingHelper const &', 'arg0')]) |
| 1642 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper * ns3::CcnxForwardingHelper::Copy() const [member function] |
| 1643 | cls.add_method('Copy', |
| 1644 | 'ns3::CcnxForwardingHelper *', |
| 1645 | [], |
| 1646 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 1647 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::CcnxForwardingHelper::Create(ns3::Ptr<ns3::Node> node) const [member function] |
| 1648 | cls.add_method('Create', |
| 1649 | 'ns3::Ptr< ns3::CcnxForwardingStrategy >', |
| 1650 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 1651 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 1652 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAllAt(ns3::Time printTime, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 1653 | cls.add_method('PrintForwardingTableAllAt', |
| 1654 | 'void', |
| 1655 | [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 1656 | is_const=True) |
| 1657 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAllEvery(ns3::Time printInterval, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 1658 | cls.add_method('PrintForwardingTableAllEvery', |
| 1659 | 'void', |
| 1660 | [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 1661 | is_const=True) |
| 1662 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAt(ns3::Time printTime, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 1663 | cls.add_method('PrintForwardingTableAt', |
| 1664 | 'void', |
| 1665 | [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 1666 | is_const=True) |
| 1667 | ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableEvery(ns3::Time printInterval, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 1668 | cls.add_method('PrintForwardingTableEvery', |
| 1669 | 'void', |
| 1670 | [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 1671 | is_const=True) |
| 1672 | return |
| 1673 | |
| 1674 | def register_Ns3CcnxHeaderHelper_methods(root_module, cls): |
| 1675 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor] |
| 1676 | cls.add_constructor([]) |
| 1677 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor] |
| 1678 | cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1679 | ## ccnx-header-helper.h (module 'NDNabstraction'): static ns3::Ptr<ns3::Header> ns3::CcnxHeaderHelper::CreateCorrectCcnxHeader(ns3::Ptr<ns3::Packet const> packet) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1680 | cls.add_method('CreateCorrectCcnxHeader', |
| 1681 | 'ns3::Ptr< ns3::Header >', |
| 1682 | [param('ns3::Ptr< ns3::Packet const >', 'packet')], |
| 1683 | is_static=True) |
| 1684 | return |
| 1685 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1686 | def register_Ns3CcnxInterestSenderHelper_methods(root_module, cls): |
| 1687 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::CcnxInterestSenderHelper::CcnxInterestSenderHelper(ns3::CcnxInterestSenderHelper const & arg0) [copy constructor] |
| 1688 | cls.add_constructor([param('ns3::CcnxInterestSenderHelper const &', 'arg0')]) |
| 1689 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::CcnxInterestSenderHelper::CcnxInterestSenderHelper(ns3::Ptr<ns3::CcnxNameComponents> interestName) [constructor] |
| 1690 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents >', 'interestName')]) |
| 1691 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxInterestSenderHelper::Install(ns3::NodeContainer c) [member function] |
| 1692 | cls.add_method('Install', |
| 1693 | 'ns3::ApplicationContainer', |
| 1694 | [param('ns3::NodeContainer', 'c')]) |
| 1695 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxInterestSenderHelper::Install(ns3::Ptr<ns3::Node> node) [member function] |
| 1696 | cls.add_method('Install', |
| 1697 | 'ns3::ApplicationContainer', |
| 1698 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 1699 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxInterestSenderHelper::Install(std::string nodeName) [member function] |
| 1700 | cls.add_method('Install', |
| 1701 | 'ns3::ApplicationContainer', |
| 1702 | [param('std::string', 'nodeName')]) |
| 1703 | ## ccnx-interest-sender-helper.h (module 'NDNabstraction'): void ns3::CcnxInterestSenderHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 1704 | cls.add_method('SetAttribute', |
| 1705 | 'void', |
| 1706 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 1707 | return |
| 1708 | |
| 1709 | def register_Ns3CcnxPitEntry_methods(root_module, cls): |
| 1710 | cls.add_output_stream_operator() |
| 1711 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::CcnxPitEntry(ns3::CcnxPitEntry const & arg0) [copy constructor] |
| 1712 | cls.add_constructor([param('ns3::CcnxPitEntry const &', 'arg0')]) |
| 1713 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::CcnxPitEntry(ns3::Ptr<ns3::CcnxNameComponents> prefix) [constructor] |
| 1714 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents >', 'prefix')]) |
| 1715 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::Time const & ns3::CcnxPitEntry::GetExpireTime() const [member function] |
| 1716 | cls.add_method('GetExpireTime', |
| 1717 | 'ns3::Time const &', |
| 1718 | [], |
| 1719 | is_const=True) |
| 1720 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxPitEntry::GetPrefix() const [member function] |
| 1721 | cls.add_method('GetPrefix', |
| 1722 | 'ns3::CcnxNameComponents const &', |
| 1723 | [], |
| 1724 | is_const=True) |
| 1725 | return |
| 1726 | |
| 1727 | def register_Ns3CcnxPitEntryAddIncoming_methods(root_module, cls): |
| 1728 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddIncoming::AddIncoming(ns3::CcnxPitEntry::AddIncoming const & arg0) [copy constructor] |
| 1729 | cls.add_constructor([param('ns3::CcnxPitEntry::AddIncoming const &', 'arg0')]) |
| 1730 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddIncoming::AddIncoming(ns3::Ptr<ns3::CcnxFace> incomingFace) [constructor] |
| 1731 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'incomingFace')]) |
| 1732 | ## ccnx-pit-entry.h (module 'NDNabstraction'): void ns3::CcnxPitEntry::AddIncoming::operator()(ns3::CcnxPitEntry & entry) [member operator] |
| 1733 | cls.add_method('operator()', |
| 1734 | 'void', |
| 1735 | [param('ns3::CcnxPitEntry &', 'entry')], |
| 1736 | custom_name='__call__') |
| 1737 | return |
| 1738 | |
| 1739 | def register_Ns3CcnxPitEntryAddOutgoing_methods(root_module, cls): |
| 1740 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddOutgoing::AddOutgoing(ns3::CcnxPitEntry::AddOutgoing const & arg0) [copy constructor] |
| 1741 | cls.add_constructor([param('ns3::CcnxPitEntry::AddOutgoing const &', 'arg0')]) |
| 1742 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::AddOutgoing::AddOutgoing(ns3::Ptr<ns3::CcnxFace> outgoingFace) [constructor] |
| 1743 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'outgoingFace')]) |
| 1744 | ## ccnx-pit-entry.h (module 'NDNabstraction'): void ns3::CcnxPitEntry::AddOutgoing::operator()(ns3::CcnxPitEntry & entry) [member operator] |
| 1745 | cls.add_method('operator()', |
| 1746 | 'void', |
| 1747 | [param('ns3::CcnxPitEntry &', 'entry')], |
| 1748 | custom_name='__call__') |
| 1749 | return |
| 1750 | |
| 1751 | def register_Ns3CcnxPitEntryClearIncoming_methods(root_module, cls): |
| 1752 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::ClearIncoming::ClearIncoming(ns3::CcnxPitEntry::ClearIncoming const & arg0) [copy constructor] |
| 1753 | cls.add_constructor([param('ns3::CcnxPitEntry::ClearIncoming const &', 'arg0')]) |
| 1754 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::ClearIncoming::ClearIncoming() [constructor] |
| 1755 | cls.add_constructor([]) |
| 1756 | ## ccnx-pit-entry.h (module 'NDNabstraction'): void ns3::CcnxPitEntry::ClearIncoming::operator()(ns3::CcnxPitEntry & entry) [member operator] |
| 1757 | cls.add_method('operator()', |
| 1758 | 'void', |
| 1759 | [param('ns3::CcnxPitEntry &', 'entry')], |
| 1760 | custom_name='__call__') |
| 1761 | return |
| 1762 | |
| 1763 | def register_Ns3CcnxPitEntryDeleteIncoming_methods(root_module, cls): |
| 1764 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::DeleteIncoming::DeleteIncoming(ns3::CcnxPitEntry::DeleteIncoming const & arg0) [copy constructor] |
| 1765 | cls.add_constructor([param('ns3::CcnxPitEntry::DeleteIncoming const &', 'arg0')]) |
| 1766 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::DeleteIncoming::DeleteIncoming(ns3::Ptr<ns3::CcnxFace> face) [constructor] |
| 1767 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face')]) |
| 1768 | ## ccnx-pit-entry.h (module 'NDNabstraction'): void ns3::CcnxPitEntry::DeleteIncoming::operator()(ns3::CcnxPitEntry & entry) [member operator] |
| 1769 | cls.add_method('operator()', |
| 1770 | 'void', |
| 1771 | [param('ns3::CcnxPitEntry &', 'entry')], |
| 1772 | custom_name='__call__') |
| 1773 | return |
| 1774 | |
| 1775 | def register_Ns3CcnxPitEntrySetFibEntry_methods(root_module, cls): |
| 1776 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::SetFibEntry::SetFibEntry(ns3::CcnxPitEntry::SetFibEntry const & arg0) [copy constructor] |
| 1777 | cls.add_constructor([param('ns3::CcnxPitEntry::SetFibEntry const &', 'arg0')]) |
| 1778 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntry::SetFibEntry::SetFibEntry(ns3::Ptr<ns3::CcnxFibEntry> fib) [constructor] |
| 1779 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFibEntry >', 'fib')]) |
| 1780 | ## ccnx-pit-entry.h (module 'NDNabstraction'): void ns3::CcnxPitEntry::SetFibEntry::operator()(ns3::CcnxPitEntry & entry) [member operator] |
| 1781 | cls.add_method('operator()', |
| 1782 | 'void', |
| 1783 | [param('ns3::CcnxPitEntry &', 'entry')], |
| 1784 | custom_name='__call__') |
| 1785 | return |
| 1786 | |
| 1787 | def register_Ns3CcnxPitEntryContainer_methods(root_module, cls): |
| 1788 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryContainer::CcnxPitEntryContainer() [constructor] |
| 1789 | cls.add_constructor([]) |
| 1790 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryContainer::CcnxPitEntryContainer(ns3::CcnxPitEntryContainer const & arg0) [copy constructor] |
| 1791 | cls.add_constructor([param('ns3::CcnxPitEntryContainer const &', 'arg0')]) |
| 1792 | return |
| 1793 | |
| 1794 | def register_Ns3CcnxPitEntryIncomingFace_methods(root_module, cls): |
| 1795 | cls.add_binary_comparison_operator('==') |
| 1796 | cls.add_binary_comparison_operator('<') |
| 1797 | ## ccnx-pit-entry-incoming-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFace::CcnxPitEntryIncomingFace(ns3::CcnxPitEntryIncomingFace const & arg0) [copy constructor] |
| 1798 | cls.add_constructor([param('ns3::CcnxPitEntryIncomingFace const &', 'arg0')]) |
| 1799 | ## ccnx-pit-entry-incoming-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFace::CcnxPitEntryIncomingFace(ns3::Ptr<ns3::CcnxFace> face) [constructor] |
| 1800 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face')]) |
| 1801 | ## ccnx-pit-entry-incoming-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFace::m_arrivalTime [variable] |
| 1802 | cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False) |
| 1803 | ## ccnx-pit-entry-incoming-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFace::m_face [variable] |
| 1804 | cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False) |
| 1805 | return |
| 1806 | |
| 1807 | def register_Ns3CcnxPitEntryIncomingFaceContainer_methods(root_module, cls): |
| 1808 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFaceContainer::CcnxPitEntryIncomingFaceContainer() [constructor] |
| 1809 | cls.add_constructor([]) |
| 1810 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryIncomingFaceContainer::CcnxPitEntryIncomingFaceContainer(ns3::CcnxPitEntryIncomingFaceContainer const & arg0) [copy constructor] |
| 1811 | cls.add_constructor([param('ns3::CcnxPitEntryIncomingFaceContainer const &', 'arg0')]) |
| 1812 | return |
| 1813 | |
| 1814 | def register_Ns3CcnxPitEntryNotFound_methods(root_module, cls): |
| 1815 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryNotFound::CcnxPitEntryNotFound() [constructor] |
| 1816 | cls.add_constructor([]) |
| 1817 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntryNotFound::CcnxPitEntryNotFound(ns3::CcnxPitEntryNotFound const & arg0) [copy constructor] |
| 1818 | cls.add_constructor([param('ns3::CcnxPitEntryNotFound const &', 'arg0')]) |
| 1819 | return |
| 1820 | |
| 1821 | def register_Ns3CcnxPitEntryOutgoingFace_methods(root_module, cls): |
| 1822 | cls.add_binary_comparison_operator('==') |
| 1823 | cls.add_binary_comparison_operator('<') |
| 1824 | ## ccnx-pit-entry-outgoing-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFace::CcnxPitEntryOutgoingFace(ns3::CcnxPitEntryOutgoingFace const & arg0) [copy constructor] |
| 1825 | cls.add_constructor([param('ns3::CcnxPitEntryOutgoingFace const &', 'arg0')]) |
| 1826 | ## ccnx-pit-entry-outgoing-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFace::CcnxPitEntryOutgoingFace(ns3::Ptr<ns3::CcnxFace> face) [constructor] |
| 1827 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face')]) |
| 1828 | ## ccnx-pit-entry-outgoing-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFace::m_face [variable] |
| 1829 | cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False) |
| 1830 | ## ccnx-pit-entry-outgoing-face.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFace::m_sendTime [variable] |
| 1831 | cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False) |
| 1832 | return |
| 1833 | |
| 1834 | def register_Ns3CcnxPitEntryOutgoingFaceContainer_methods(root_module, cls): |
| 1835 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFaceContainer::CcnxPitEntryOutgoingFaceContainer() [constructor] |
| 1836 | cls.add_constructor([]) |
| 1837 | ## ccnx-pit-entry.h (module 'NDNabstraction'): ns3::CcnxPitEntryOutgoingFaceContainer::CcnxPitEntryOutgoingFaceContainer(ns3::CcnxPitEntryOutgoingFaceContainer const & arg0) [copy constructor] |
| 1838 | cls.add_constructor([param('ns3::CcnxPitEntryOutgoingFaceContainer const &', 'arg0')]) |
| 1839 | return |
| 1840 | |
| 1841 | def register_Ns3CcnxProducerHelper_methods(root_module, cls): |
| 1842 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::CcnxProducerHelper::CcnxProducerHelper(ns3::CcnxProducerHelper const & arg0) [copy constructor] |
| 1843 | cls.add_constructor([param('ns3::CcnxProducerHelper const &', 'arg0')]) |
| 1844 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::CcnxProducerHelper::CcnxProducerHelper(uint32_t storeCapacity) [constructor] |
| 1845 | cls.add_constructor([param('uint32_t', 'storeCapacity')]) |
| 1846 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxProducerHelper::Install(ns3::NodeContainer c) [member function] |
| 1847 | cls.add_method('Install', |
| 1848 | 'ns3::ApplicationContainer', |
| 1849 | [param('ns3::NodeContainer', 'c')]) |
| 1850 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxProducerHelper::Install(ns3::Ptr<ns3::Node> node) [member function] |
| 1851 | cls.add_method('Install', |
| 1852 | 'ns3::ApplicationContainer', |
| 1853 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 1854 | ## ccnx-producer-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxProducerHelper::Install(std::string nodeName) [member function] |
| 1855 | cls.add_method('Install', |
| 1856 | 'ns3::ApplicationContainer', |
| 1857 | [param('std::string', 'nodeName')]) |
| 1858 | ## ccnx-producer-helper.h (module 'NDNabstraction'): void ns3::CcnxProducerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 1859 | cls.add_method('SetAttribute', |
| 1860 | 'void', |
| 1861 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 1862 | return |
| 1863 | |
| 1864 | def register_Ns3CcnxRitContainer_methods(root_module, cls): |
| 1865 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitContainer::CcnxRitContainer() [constructor] |
| 1866 | cls.add_constructor([]) |
| 1867 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitContainer::CcnxRitContainer(ns3::CcnxRitContainer const & arg0) [copy constructor] |
| 1868 | cls.add_constructor([param('ns3::CcnxRitContainer const &', 'arg0')]) |
| 1869 | return |
| 1870 | |
| 1871 | def register_Ns3CcnxRitEntry_methods(root_module, cls): |
| 1872 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry::CcnxRitEntry(ns3::CcnxRitEntry const & arg0) [copy constructor] |
| 1873 | cls.add_constructor([param('ns3::CcnxRitEntry const &', 'arg0')]) |
| 1874 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry::CcnxRitEntry(ns3::CcnxNameComponents const & prefix, uint32_t nonce, ns3::Time const & timeout) [constructor] |
| 1875 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'prefix'), param('uint32_t', 'nonce'), param('ns3::Time const &', 'timeout')]) |
| 1876 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry::m_expireTime [variable] |
| 1877 | cls.add_instance_attribute('m_expireTime', 'ns3::Time', is_const=False) |
| 1878 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry::m_nonce [variable] |
| 1879 | cls.add_instance_attribute('m_nonce', 'uint32_t', is_const=False) |
| 1880 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRitEntry::m_prefix [variable] |
| 1881 | cls.add_instance_attribute('m_prefix', 'ns3::CcnxNameComponents', is_const=False) |
| 1882 | return |
| 1883 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 1884 | def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls): |
| 1885 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor] |
| 1886 | cls.add_constructor([]) |
| 1887 | ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor] |
| 1888 | cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')]) |
| 1889 | return |
| 1890 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1891 | def register_Ns3DataRate_methods(root_module, cls): |
| 1892 | cls.add_output_stream_operator() |
| 1893 | cls.add_binary_comparison_operator('!=') |
| 1894 | cls.add_binary_comparison_operator('<') |
| 1895 | cls.add_binary_comparison_operator('<=') |
| 1896 | cls.add_binary_comparison_operator('==') |
| 1897 | cls.add_binary_comparison_operator('>') |
| 1898 | cls.add_binary_comparison_operator('>=') |
| 1899 | ## data-rate.h (module 'network'): ns3::DataRate::DataRate(ns3::DataRate const & arg0) [copy constructor] |
| 1900 | cls.add_constructor([param('ns3::DataRate const &', 'arg0')]) |
| 1901 | ## data-rate.h (module 'network'): ns3::DataRate::DataRate() [constructor] |
| 1902 | cls.add_constructor([]) |
| 1903 | ## data-rate.h (module 'network'): ns3::DataRate::DataRate(uint64_t bps) [constructor] |
| 1904 | cls.add_constructor([param('uint64_t', 'bps')]) |
| 1905 | ## data-rate.h (module 'network'): ns3::DataRate::DataRate(std::string rate) [constructor] |
| 1906 | cls.add_constructor([param('std::string', 'rate')]) |
| 1907 | ## data-rate.h (module 'network'): double ns3::DataRate::CalculateTxTime(uint32_t bytes) const [member function] |
| 1908 | cls.add_method('CalculateTxTime', |
| 1909 | 'double', |
| 1910 | [param('uint32_t', 'bytes')], |
| 1911 | is_const=True) |
| 1912 | ## data-rate.h (module 'network'): uint64_t ns3::DataRate::GetBitRate() const [member function] |
| 1913 | cls.add_method('GetBitRate', |
| 1914 | 'uint64_t', |
| 1915 | [], |
| 1916 | is_const=True) |
| 1917 | return |
| 1918 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1919 | def register_Ns3EventId_methods(root_module, cls): |
| 1920 | cls.add_binary_comparison_operator('!=') |
| 1921 | cls.add_binary_comparison_operator('==') |
| 1922 | ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor] |
| 1923 | cls.add_constructor([param('ns3::EventId const &', 'arg0')]) |
| 1924 | ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor] |
| 1925 | cls.add_constructor([]) |
| 1926 | ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor] |
| 1927 | cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')]) |
| 1928 | ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function] |
| 1929 | cls.add_method('Cancel', |
| 1930 | 'void', |
| 1931 | []) |
| 1932 | ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function] |
| 1933 | cls.add_method('GetContext', |
| 1934 | 'uint32_t', |
| 1935 | [], |
| 1936 | is_const=True) |
| 1937 | ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function] |
| 1938 | cls.add_method('GetTs', |
| 1939 | 'uint64_t', |
| 1940 | [], |
| 1941 | is_const=True) |
| 1942 | ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function] |
| 1943 | cls.add_method('GetUid', |
| 1944 | 'uint32_t', |
| 1945 | [], |
| 1946 | is_const=True) |
| 1947 | ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function] |
| 1948 | cls.add_method('IsExpired', |
| 1949 | 'bool', |
| 1950 | [], |
| 1951 | is_const=True) |
| 1952 | ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function] |
| 1953 | cls.add_method('IsRunning', |
| 1954 | 'bool', |
| 1955 | [], |
| 1956 | is_const=True) |
| 1957 | ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function] |
| 1958 | cls.add_method('PeekEventImpl', |
| 1959 | 'ns3::EventImpl *', |
| 1960 | [], |
| 1961 | is_const=True) |
| 1962 | return |
| 1963 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1964 | def register_Ns3Ipv4Address_methods(root_module, cls): |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1965 | cls.add_binary_comparison_operator('!=') |
| 1966 | cls.add_output_stream_operator() |
| 1967 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 1968 | cls.add_binary_comparison_operator('<') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1969 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor] |
| 1970 | cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')]) |
| 1971 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor] |
| 1972 | cls.add_constructor([]) |
| 1973 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor] |
| 1974 | cls.add_constructor([param('uint32_t', 'address')]) |
| 1975 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor] |
| 1976 | cls.add_constructor([param('char const *', 'address')]) |
| 1977 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function] |
| 1978 | cls.add_method('CombineMask', |
| 1979 | 'ns3::Ipv4Address', |
| 1980 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 1981 | is_const=True) |
| 1982 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function] |
| 1983 | cls.add_method('ConvertFrom', |
| 1984 | 'ns3::Ipv4Address', |
| 1985 | [param('ns3::Address const &', 'address')], |
| 1986 | is_static=True) |
| 1987 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function] |
| 1988 | cls.add_method('Deserialize', |
| 1989 | 'ns3::Ipv4Address', |
| 1990 | [param('uint8_t const *', 'buf')], |
| 1991 | is_static=True) |
| 1992 | ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function] |
| 1993 | cls.add_method('Get', |
| 1994 | 'uint32_t', |
| 1995 | [], |
| 1996 | is_const=True) |
| 1997 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function] |
| 1998 | cls.add_method('GetAny', |
| 1999 | 'ns3::Ipv4Address', |
| 2000 | [], |
| 2001 | is_static=True) |
| 2002 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function] |
| 2003 | cls.add_method('GetBroadcast', |
| 2004 | 'ns3::Ipv4Address', |
| 2005 | [], |
| 2006 | is_static=True) |
| 2007 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function] |
| 2008 | cls.add_method('GetLoopback', |
| 2009 | 'ns3::Ipv4Address', |
| 2010 | [], |
| 2011 | is_static=True) |
| 2012 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
| 2013 | cls.add_method('GetSubnetDirectedBroadcast', |
| 2014 | 'ns3::Ipv4Address', |
| 2015 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 2016 | is_const=True) |
| 2017 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function] |
| 2018 | cls.add_method('GetZero', |
| 2019 | 'ns3::Ipv4Address', |
| 2020 | [], |
| 2021 | is_static=True) |
| 2022 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function] |
| 2023 | cls.add_method('IsBroadcast', |
| 2024 | 'bool', |
| 2025 | [], |
| 2026 | is_const=True) |
| 2027 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function] |
| 2028 | cls.add_method('IsEqual', |
| 2029 | 'bool', |
| 2030 | [param('ns3::Ipv4Address const &', 'other')], |
| 2031 | is_const=True) |
| 2032 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function] |
| 2033 | cls.add_method('IsLocalMulticast', |
| 2034 | 'bool', |
| 2035 | [], |
| 2036 | is_const=True) |
| 2037 | ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function] |
| 2038 | cls.add_method('IsMatchingType', |
| 2039 | 'bool', |
| 2040 | [param('ns3::Address const &', 'address')], |
| 2041 | is_static=True) |
| 2042 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function] |
| 2043 | cls.add_method('IsMulticast', |
| 2044 | 'bool', |
| 2045 | [], |
| 2046 | is_const=True) |
| 2047 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
| 2048 | cls.add_method('IsSubnetDirectedBroadcast', |
| 2049 | 'bool', |
| 2050 | [param('ns3::Ipv4Mask const &', 'mask')], |
| 2051 | is_const=True) |
| 2052 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function] |
| 2053 | cls.add_method('Print', |
| 2054 | 'void', |
| 2055 | [param('std::ostream &', 'os')], |
| 2056 | is_const=True) |
| 2057 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function] |
| 2058 | cls.add_method('Serialize', |
| 2059 | 'void', |
| 2060 | [param('uint8_t *', 'buf')], |
| 2061 | is_const=True) |
| 2062 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function] |
| 2063 | cls.add_method('Set', |
| 2064 | 'void', |
| 2065 | [param('uint32_t', 'address')]) |
| 2066 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function] |
| 2067 | cls.add_method('Set', |
| 2068 | 'void', |
| 2069 | [param('char const *', 'address')]) |
| 2070 | return |
| 2071 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2072 | def register_Ns3Ipv4Mask_methods(root_module, cls): |
| 2073 | cls.add_binary_comparison_operator('!=') |
| 2074 | cls.add_output_stream_operator() |
| 2075 | cls.add_binary_comparison_operator('==') |
| 2076 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor] |
| 2077 | cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')]) |
| 2078 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor] |
| 2079 | cls.add_constructor([]) |
| 2080 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor] |
| 2081 | cls.add_constructor([param('uint32_t', 'mask')]) |
| 2082 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor] |
| 2083 | cls.add_constructor([param('char const *', 'mask')]) |
| 2084 | ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function] |
| 2085 | cls.add_method('Get', |
| 2086 | 'uint32_t', |
| 2087 | [], |
| 2088 | is_const=True) |
| 2089 | ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function] |
| 2090 | cls.add_method('GetInverse', |
| 2091 | 'uint32_t', |
| 2092 | [], |
| 2093 | is_const=True) |
| 2094 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function] |
| 2095 | cls.add_method('GetLoopback', |
| 2096 | 'ns3::Ipv4Mask', |
| 2097 | [], |
| 2098 | is_static=True) |
| 2099 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function] |
| 2100 | cls.add_method('GetOnes', |
| 2101 | 'ns3::Ipv4Mask', |
| 2102 | [], |
| 2103 | is_static=True) |
| 2104 | ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function] |
| 2105 | cls.add_method('GetPrefixLength', |
| 2106 | 'uint16_t', |
| 2107 | [], |
| 2108 | is_const=True) |
| 2109 | ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function] |
| 2110 | cls.add_method('GetZero', |
| 2111 | 'ns3::Ipv4Mask', |
| 2112 | [], |
| 2113 | is_static=True) |
| 2114 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function] |
| 2115 | cls.add_method('IsEqual', |
| 2116 | 'bool', |
| 2117 | [param('ns3::Ipv4Mask', 'other')], |
| 2118 | is_const=True) |
| 2119 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function] |
| 2120 | cls.add_method('IsMatch', |
| 2121 | 'bool', |
| 2122 | [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], |
| 2123 | is_const=True) |
| 2124 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function] |
| 2125 | cls.add_method('Print', |
| 2126 | 'void', |
| 2127 | [param('std::ostream &', 'os')], |
| 2128 | is_const=True) |
| 2129 | ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function] |
| 2130 | cls.add_method('Set', |
| 2131 | 'void', |
| 2132 | [param('uint32_t', 'mask')]) |
| 2133 | return |
| 2134 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2135 | def register_Ns3Ipv6Address_methods(root_module, cls): |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2136 | cls.add_binary_comparison_operator('!=') |
| 2137 | cls.add_output_stream_operator() |
| 2138 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 2139 | cls.add_binary_comparison_operator('<') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2140 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor] |
| 2141 | cls.add_constructor([]) |
| 2142 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor] |
| 2143 | cls.add_constructor([param('char const *', 'address')]) |
| 2144 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor] |
| 2145 | cls.add_constructor([param('uint8_t *', 'address')]) |
| 2146 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor] |
| 2147 | cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')]) |
| 2148 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor] |
| 2149 | cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')]) |
| 2150 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function] |
| 2151 | cls.add_method('CombinePrefix', |
| 2152 | 'ns3::Ipv6Address', |
| 2153 | [param('ns3::Ipv6Prefix const &', 'prefix')]) |
| 2154 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function] |
| 2155 | cls.add_method('ConvertFrom', |
| 2156 | 'ns3::Ipv6Address', |
| 2157 | [param('ns3::Address const &', 'address')], |
| 2158 | is_static=True) |
| 2159 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function] |
| 2160 | cls.add_method('Deserialize', |
| 2161 | 'ns3::Ipv6Address', |
| 2162 | [param('uint8_t const *', 'buf')], |
| 2163 | is_static=True) |
| 2164 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function] |
| 2165 | cls.add_method('GetAllHostsMulticast', |
| 2166 | 'ns3::Ipv6Address', |
| 2167 | [], |
| 2168 | is_static=True) |
| 2169 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function] |
| 2170 | cls.add_method('GetAllNodesMulticast', |
| 2171 | 'ns3::Ipv6Address', |
| 2172 | [], |
| 2173 | is_static=True) |
| 2174 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function] |
| 2175 | cls.add_method('GetAllRoutersMulticast', |
| 2176 | 'ns3::Ipv6Address', |
| 2177 | [], |
| 2178 | is_static=True) |
| 2179 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function] |
| 2180 | cls.add_method('GetAny', |
| 2181 | 'ns3::Ipv6Address', |
| 2182 | [], |
| 2183 | is_static=True) |
| 2184 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function] |
| 2185 | cls.add_method('GetBytes', |
| 2186 | 'void', |
| 2187 | [param('uint8_t *', 'buf')], |
| 2188 | is_const=True) |
| 2189 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function] |
| 2190 | cls.add_method('GetLoopback', |
| 2191 | 'ns3::Ipv6Address', |
| 2192 | [], |
| 2193 | is_static=True) |
| 2194 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function] |
| 2195 | cls.add_method('GetOnes', |
| 2196 | 'ns3::Ipv6Address', |
| 2197 | [], |
| 2198 | is_static=True) |
| 2199 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function] |
| 2200 | cls.add_method('GetZero', |
| 2201 | 'ns3::Ipv6Address', |
| 2202 | [], |
| 2203 | is_static=True) |
| 2204 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function] |
| 2205 | cls.add_method('IsAllHostsMulticast', |
| 2206 | 'bool', |
| 2207 | [], |
| 2208 | is_const=True) |
| 2209 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function] |
| 2210 | cls.add_method('IsAllNodesMulticast', |
| 2211 | 'bool', |
| 2212 | [], |
| 2213 | is_const=True) |
| 2214 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function] |
| 2215 | cls.add_method('IsAllRoutersMulticast', |
| 2216 | 'bool', |
| 2217 | [], |
| 2218 | is_const=True) |
| 2219 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function] |
| 2220 | cls.add_method('IsAny', |
| 2221 | 'bool', |
| 2222 | [], |
| 2223 | is_const=True) |
| 2224 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function] |
| 2225 | cls.add_method('IsEqual', |
| 2226 | 'bool', |
| 2227 | [param('ns3::Ipv6Address const &', 'other')], |
| 2228 | is_const=True) |
| 2229 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function] |
| 2230 | cls.add_method('IsLinkLocal', |
| 2231 | 'bool', |
| 2232 | [], |
| 2233 | is_const=True) |
| 2234 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function] |
| 2235 | cls.add_method('IsLocalhost', |
| 2236 | 'bool', |
| 2237 | [], |
| 2238 | is_const=True) |
| 2239 | ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function] |
| 2240 | cls.add_method('IsMatchingType', |
| 2241 | 'bool', |
| 2242 | [param('ns3::Address const &', 'address')], |
| 2243 | is_static=True) |
| 2244 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function] |
| 2245 | cls.add_method('IsMulticast', |
| 2246 | 'bool', |
| 2247 | [], |
| 2248 | is_const=True) |
| 2249 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function] |
| 2250 | cls.add_method('IsSolicitedMulticast', |
| 2251 | 'bool', |
| 2252 | [], |
| 2253 | is_const=True) |
| 2254 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function] |
| 2255 | cls.add_method('MakeAutoconfiguredAddress', |
| 2256 | 'ns3::Ipv6Address', |
| 2257 | [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], |
| 2258 | is_static=True) |
| 2259 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function] |
| 2260 | cls.add_method('MakeAutoconfiguredLinkLocalAddress', |
| 2261 | 'ns3::Ipv6Address', |
| 2262 | [param('ns3::Mac48Address', 'mac')], |
| 2263 | is_static=True) |
| 2264 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function] |
| 2265 | cls.add_method('MakeSolicitedAddress', |
| 2266 | 'ns3::Ipv6Address', |
| 2267 | [param('ns3::Ipv6Address', 'addr')], |
| 2268 | is_static=True) |
| 2269 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function] |
| 2270 | cls.add_method('Print', |
| 2271 | 'void', |
| 2272 | [param('std::ostream &', 'os')], |
| 2273 | is_const=True) |
| 2274 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function] |
| 2275 | cls.add_method('Serialize', |
| 2276 | 'void', |
| 2277 | [param('uint8_t *', 'buf')], |
| 2278 | is_const=True) |
| 2279 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function] |
| 2280 | cls.add_method('Set', |
| 2281 | 'void', |
| 2282 | [param('char const *', 'address')]) |
| 2283 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function] |
| 2284 | cls.add_method('Set', |
| 2285 | 'void', |
| 2286 | [param('uint8_t *', 'address')]) |
| 2287 | return |
| 2288 | |
| 2289 | def register_Ns3Ipv6Prefix_methods(root_module, cls): |
| 2290 | cls.add_binary_comparison_operator('!=') |
| 2291 | cls.add_output_stream_operator() |
| 2292 | cls.add_binary_comparison_operator('==') |
| 2293 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor] |
| 2294 | cls.add_constructor([]) |
| 2295 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor] |
| 2296 | cls.add_constructor([param('uint8_t *', 'prefix')]) |
| 2297 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor] |
| 2298 | cls.add_constructor([param('char const *', 'prefix')]) |
| 2299 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor] |
| 2300 | cls.add_constructor([param('uint8_t', 'prefix')]) |
| 2301 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor] |
| 2302 | cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')]) |
| 2303 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor] |
| 2304 | cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')]) |
| 2305 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function] |
| 2306 | cls.add_method('GetBytes', |
| 2307 | 'void', |
| 2308 | [param('uint8_t *', 'buf')], |
| 2309 | is_const=True) |
| 2310 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function] |
| 2311 | cls.add_method('GetLoopback', |
| 2312 | 'ns3::Ipv6Prefix', |
| 2313 | [], |
| 2314 | is_static=True) |
| 2315 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function] |
| 2316 | cls.add_method('GetOnes', |
| 2317 | 'ns3::Ipv6Prefix', |
| 2318 | [], |
| 2319 | is_static=True) |
| 2320 | ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function] |
| 2321 | cls.add_method('GetPrefixLength', |
| 2322 | 'uint8_t', |
| 2323 | [], |
| 2324 | is_const=True) |
| 2325 | ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function] |
| 2326 | cls.add_method('GetZero', |
| 2327 | 'ns3::Ipv6Prefix', |
| 2328 | [], |
| 2329 | is_static=True) |
| 2330 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function] |
| 2331 | cls.add_method('IsEqual', |
| 2332 | 'bool', |
| 2333 | [param('ns3::Ipv6Prefix const &', 'other')], |
| 2334 | is_const=True) |
| 2335 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function] |
| 2336 | cls.add_method('IsMatch', |
| 2337 | 'bool', |
| 2338 | [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], |
| 2339 | is_const=True) |
| 2340 | ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function] |
| 2341 | cls.add_method('Print', |
| 2342 | 'void', |
| 2343 | [param('std::ostream &', 'os')], |
| 2344 | is_const=True) |
| 2345 | return |
| 2346 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 2347 | def register_Ns3LogComponent_methods(root_module, cls): |
| 2348 | ## log.h (module 'core'): ns3::LogComponent::LogComponent(ns3::LogComponent const & arg0) [copy constructor] |
| 2349 | cls.add_constructor([param('ns3::LogComponent const &', 'arg0')]) |
| 2350 | ## log.h (module 'core'): ns3::LogComponent::LogComponent(char const * name) [constructor] |
| 2351 | cls.add_constructor([param('char const *', 'name')]) |
| 2352 | ## log.h (module 'core'): void ns3::LogComponent::Disable(ns3::LogLevel level) [member function] |
| 2353 | cls.add_method('Disable', |
| 2354 | 'void', |
| 2355 | [param('ns3::LogLevel', 'level')]) |
| 2356 | ## log.h (module 'core'): void ns3::LogComponent::Enable(ns3::LogLevel level) [member function] |
| 2357 | cls.add_method('Enable', |
| 2358 | 'void', |
| 2359 | [param('ns3::LogLevel', 'level')]) |
| 2360 | ## log.h (module 'core'): void ns3::LogComponent::EnvVarCheck(char const * name) [member function] |
| 2361 | cls.add_method('EnvVarCheck', |
| 2362 | 'void', |
| 2363 | [param('char const *', 'name')]) |
| 2364 | ## log.h (module 'core'): bool ns3::LogComponent::IsEnabled(ns3::LogLevel level) const [member function] |
| 2365 | cls.add_method('IsEnabled', |
| 2366 | 'bool', |
| 2367 | [param('ns3::LogLevel', 'level')], |
| 2368 | is_const=True) |
| 2369 | ## log.h (module 'core'): bool ns3::LogComponent::IsNoneEnabled() const [member function] |
| 2370 | cls.add_method('IsNoneEnabled', |
| 2371 | 'bool', |
| 2372 | [], |
| 2373 | is_const=True) |
| 2374 | ## log.h (module 'core'): char const * ns3::LogComponent::Name() const [member function] |
| 2375 | cls.add_method('Name', |
| 2376 | 'char const *', |
| 2377 | [], |
| 2378 | is_const=True) |
| 2379 | return |
| 2380 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 2381 | def register_Ns3Mac48Address_methods(root_module, cls): |
| 2382 | cls.add_binary_comparison_operator('!=') |
| 2383 | cls.add_output_stream_operator() |
| 2384 | cls.add_binary_comparison_operator('==') |
| 2385 | cls.add_binary_comparison_operator('<') |
| 2386 | ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(ns3::Mac48Address const & arg0) [copy constructor] |
| 2387 | cls.add_constructor([param('ns3::Mac48Address const &', 'arg0')]) |
| 2388 | ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address() [constructor] |
| 2389 | cls.add_constructor([]) |
| 2390 | ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(char const * str) [constructor] |
| 2391 | cls.add_constructor([param('char const *', 'str')]) |
| 2392 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::Allocate() [member function] |
| 2393 | cls.add_method('Allocate', |
| 2394 | 'ns3::Mac48Address', |
| 2395 | [], |
| 2396 | is_static=True) |
| 2397 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::ConvertFrom(ns3::Address const & address) [member function] |
| 2398 | cls.add_method('ConvertFrom', |
| 2399 | 'ns3::Mac48Address', |
| 2400 | [param('ns3::Address const &', 'address')], |
| 2401 | is_static=True) |
| 2402 | ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyFrom(uint8_t const * buffer) [member function] |
| 2403 | cls.add_method('CopyFrom', |
| 2404 | 'void', |
| 2405 | [param('uint8_t const *', 'buffer')]) |
| 2406 | ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyTo(uint8_t * buffer) const [member function] |
| 2407 | cls.add_method('CopyTo', |
| 2408 | 'void', |
| 2409 | [param('uint8_t *', 'buffer')], |
| 2410 | is_const=True) |
| 2411 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetBroadcast() [member function] |
| 2412 | cls.add_method('GetBroadcast', |
| 2413 | 'ns3::Mac48Address', |
| 2414 | [], |
| 2415 | is_static=True) |
| 2416 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv4Address address) [member function] |
| 2417 | cls.add_method('GetMulticast', |
| 2418 | 'ns3::Mac48Address', |
| 2419 | [param('ns3::Ipv4Address', 'address')], |
| 2420 | is_static=True) |
| 2421 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv6Address address) [member function] |
| 2422 | cls.add_method('GetMulticast', |
| 2423 | 'ns3::Mac48Address', |
| 2424 | [param('ns3::Ipv6Address', 'address')], |
| 2425 | is_static=True) |
| 2426 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast6Prefix() [member function] |
| 2427 | cls.add_method('GetMulticast6Prefix', |
| 2428 | 'ns3::Mac48Address', |
| 2429 | [], |
| 2430 | is_static=True) |
| 2431 | ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticastPrefix() [member function] |
| 2432 | cls.add_method('GetMulticastPrefix', |
| 2433 | 'ns3::Mac48Address', |
| 2434 | [], |
| 2435 | is_static=True) |
| 2436 | ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsBroadcast() const [member function] |
| 2437 | cls.add_method('IsBroadcast', |
| 2438 | 'bool', |
| 2439 | [], |
| 2440 | is_const=True) |
| 2441 | ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsGroup() const [member function] |
| 2442 | cls.add_method('IsGroup', |
| 2443 | 'bool', |
| 2444 | [], |
| 2445 | is_const=True) |
| 2446 | ## mac48-address.h (module 'network'): static bool ns3::Mac48Address::IsMatchingType(ns3::Address const & address) [member function] |
| 2447 | cls.add_method('IsMatchingType', |
| 2448 | 'bool', |
| 2449 | [param('ns3::Address const &', 'address')], |
| 2450 | is_static=True) |
| 2451 | return |
| 2452 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2453 | def register_Ns3NetDeviceContainer_methods(root_module, cls): |
| 2454 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor] |
| 2455 | cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')]) |
| 2456 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor] |
| 2457 | cls.add_constructor([]) |
| 2458 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor] |
| 2459 | cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')]) |
| 2460 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor] |
| 2461 | cls.add_constructor([param('std::string', 'devName')]) |
| 2462 | ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor] |
| 2463 | cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')]) |
| 2464 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function] |
| 2465 | cls.add_method('Add', |
| 2466 | 'void', |
| 2467 | [param('ns3::NetDeviceContainer', 'other')]) |
| 2468 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 2469 | cls.add_method('Add', |
| 2470 | 'void', |
| 2471 | [param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
| 2472 | ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function] |
| 2473 | cls.add_method('Add', |
| 2474 | 'void', |
| 2475 | [param('std::string', 'deviceName')]) |
| 2476 | ## 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] |
| 2477 | cls.add_method('Begin', |
| 2478 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', |
| 2479 | [], |
| 2480 | is_const=True) |
| 2481 | ## 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] |
| 2482 | cls.add_method('End', |
| 2483 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', |
| 2484 | [], |
| 2485 | is_const=True) |
| 2486 | ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function] |
| 2487 | cls.add_method('Get', |
| 2488 | 'ns3::Ptr< ns3::NetDevice >', |
| 2489 | [param('uint32_t', 'i')], |
| 2490 | is_const=True) |
| 2491 | ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function] |
| 2492 | cls.add_method('GetN', |
| 2493 | 'uint32_t', |
| 2494 | [], |
| 2495 | is_const=True) |
| 2496 | return |
| 2497 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2498 | def register_Ns3NodeContainer_methods(root_module, cls): |
| 2499 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor] |
| 2500 | cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')]) |
| 2501 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor] |
| 2502 | cls.add_constructor([]) |
| 2503 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor] |
| 2504 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
| 2505 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor] |
| 2506 | cls.add_constructor([param('std::string', 'nodeName')]) |
| 2507 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor] |
| 2508 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')]) |
| 2509 | ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor] |
| 2510 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')]) |
| 2511 | ## 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] |
| 2512 | cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')]) |
| 2513 | ## 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] |
| 2514 | 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')]) |
| 2515 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function] |
| 2516 | cls.add_method('Add', |
| 2517 | 'void', |
| 2518 | [param('ns3::NodeContainer', 'other')]) |
| 2519 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function] |
| 2520 | cls.add_method('Add', |
| 2521 | 'void', |
| 2522 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 2523 | ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function] |
| 2524 | cls.add_method('Add', |
| 2525 | 'void', |
| 2526 | [param('std::string', 'nodeName')]) |
| 2527 | ## 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] |
| 2528 | cls.add_method('Begin', |
| 2529 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', |
| 2530 | [], |
| 2531 | is_const=True) |
| 2532 | ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function] |
| 2533 | cls.add_method('Create', |
| 2534 | 'void', |
| 2535 | [param('uint32_t', 'n')]) |
| 2536 | ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function] |
| 2537 | cls.add_method('Create', |
| 2538 | 'void', |
| 2539 | [param('uint32_t', 'n'), param('uint32_t', 'systemId')]) |
| 2540 | ## 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] |
| 2541 | cls.add_method('End', |
| 2542 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', |
| 2543 | [], |
| 2544 | is_const=True) |
| 2545 | ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function] |
| 2546 | cls.add_method('Get', |
| 2547 | 'ns3::Ptr< ns3::Node >', |
| 2548 | [param('uint32_t', 'i')], |
| 2549 | is_const=True) |
| 2550 | ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function] |
| 2551 | cls.add_method('GetGlobal', |
| 2552 | 'ns3::NodeContainer', |
| 2553 | [], |
| 2554 | is_static=True) |
| 2555 | ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function] |
| 2556 | cls.add_method('GetN', |
| 2557 | 'uint32_t', |
| 2558 | [], |
| 2559 | is_const=True) |
| 2560 | return |
| 2561 | |
| 2562 | def register_Ns3ObjectBase_methods(root_module, cls): |
| 2563 | ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor] |
| 2564 | cls.add_constructor([]) |
| 2565 | ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor] |
| 2566 | cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')]) |
| 2567 | ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function] |
| 2568 | cls.add_method('GetAttribute', |
| 2569 | 'void', |
| 2570 | [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], |
| 2571 | is_const=True) |
| 2572 | ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function] |
| 2573 | cls.add_method('GetAttributeFailSafe', |
| 2574 | 'bool', |
| 2575 | [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], |
| 2576 | is_const=True) |
| 2577 | ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function] |
| 2578 | cls.add_method('GetInstanceTypeId', |
| 2579 | 'ns3::TypeId', |
| 2580 | [], |
| 2581 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 2582 | ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function] |
| 2583 | cls.add_method('GetTypeId', |
| 2584 | 'ns3::TypeId', |
| 2585 | [], |
| 2586 | is_static=True) |
| 2587 | ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 2588 | cls.add_method('SetAttribute', |
| 2589 | 'void', |
| 2590 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 2591 | ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function] |
| 2592 | cls.add_method('SetAttributeFailSafe', |
| 2593 | 'bool', |
| 2594 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 2595 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
| 2596 | cls.add_method('TraceConnect', |
| 2597 | 'bool', |
| 2598 | [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
| 2599 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
| 2600 | cls.add_method('TraceConnectWithoutContext', |
| 2601 | 'bool', |
| 2602 | [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
| 2603 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
| 2604 | cls.add_method('TraceDisconnect', |
| 2605 | 'bool', |
| 2606 | [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
| 2607 | ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
| 2608 | cls.add_method('TraceDisconnectWithoutContext', |
| 2609 | 'bool', |
| 2610 | [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2611 | ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2612 | cls.add_method('ConstructSelf', |
| 2613 | 'void', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2614 | [param('ns3::AttributeConstructionList const &', 'attributes')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2615 | visibility='protected') |
| 2616 | ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function] |
| 2617 | cls.add_method('NotifyConstructionCompleted', |
| 2618 | 'void', |
| 2619 | [], |
| 2620 | visibility='protected', is_virtual=True) |
| 2621 | return |
| 2622 | |
| 2623 | def register_Ns3ObjectDeleter_methods(root_module, cls): |
| 2624 | ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor] |
| 2625 | cls.add_constructor([]) |
| 2626 | ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor] |
| 2627 | cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')]) |
| 2628 | ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function] |
| 2629 | cls.add_method('Delete', |
| 2630 | 'void', |
| 2631 | [param('ns3::Object *', 'object')], |
| 2632 | is_static=True) |
| 2633 | return |
| 2634 | |
| 2635 | def register_Ns3ObjectFactory_methods(root_module, cls): |
| 2636 | cls.add_output_stream_operator() |
| 2637 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor] |
| 2638 | cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')]) |
| 2639 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor] |
| 2640 | cls.add_constructor([]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2641 | ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor] |
| 2642 | cls.add_constructor([param('std::string', 'typeId')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2643 | ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function] |
| 2644 | cls.add_method('Create', |
| 2645 | 'ns3::Ptr< ns3::Object >', |
| 2646 | [], |
| 2647 | is_const=True) |
| 2648 | ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function] |
| 2649 | cls.add_method('GetTypeId', |
| 2650 | 'ns3::TypeId', |
| 2651 | [], |
| 2652 | is_const=True) |
| 2653 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function] |
| 2654 | cls.add_method('Set', |
| 2655 | 'void', |
| 2656 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 2657 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function] |
| 2658 | cls.add_method('SetTypeId', |
| 2659 | 'void', |
| 2660 | [param('ns3::TypeId', 'tid')]) |
| 2661 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function] |
| 2662 | cls.add_method('SetTypeId', |
| 2663 | 'void', |
| 2664 | [param('char const *', 'tid')]) |
| 2665 | ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function] |
| 2666 | cls.add_method('SetTypeId', |
| 2667 | 'void', |
| 2668 | [param('std::string', 'tid')]) |
| 2669 | return |
| 2670 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2671 | def register_Ns3PacketMetadata_methods(root_module, cls): |
| 2672 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor] |
| 2673 | cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')]) |
| 2674 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor] |
| 2675 | cls.add_constructor([param('ns3::PacketMetadata const &', 'o')]) |
| 2676 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function] |
| 2677 | cls.add_method('AddAtEnd', |
| 2678 | 'void', |
| 2679 | [param('ns3::PacketMetadata const &', 'o')]) |
| 2680 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function] |
| 2681 | cls.add_method('AddHeader', |
| 2682 | 'void', |
| 2683 | [param('ns3::Header const &', 'header'), param('uint32_t', 'size')]) |
| 2684 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function] |
| 2685 | cls.add_method('AddPaddingAtEnd', |
| 2686 | 'void', |
| 2687 | [param('uint32_t', 'end')]) |
| 2688 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function] |
| 2689 | cls.add_method('AddTrailer', |
| 2690 | 'void', |
| 2691 | [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')]) |
| 2692 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function] |
| 2693 | cls.add_method('BeginItem', |
| 2694 | 'ns3::PacketMetadata::ItemIterator', |
| 2695 | [param('ns3::Buffer', 'buffer')], |
| 2696 | is_const=True) |
| 2697 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function] |
| 2698 | cls.add_method('CreateFragment', |
| 2699 | 'ns3::PacketMetadata', |
| 2700 | [param('uint32_t', 'start'), param('uint32_t', 'end')], |
| 2701 | is_const=True) |
| 2702 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function] |
| 2703 | cls.add_method('Deserialize', |
| 2704 | 'uint32_t', |
| 2705 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 2706 | ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function] |
| 2707 | cls.add_method('Enable', |
| 2708 | 'void', |
| 2709 | [], |
| 2710 | is_static=True) |
| 2711 | ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function] |
| 2712 | cls.add_method('EnableChecking', |
| 2713 | 'void', |
| 2714 | [], |
| 2715 | is_static=True) |
| 2716 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function] |
| 2717 | cls.add_method('GetSerializedSize', |
| 2718 | 'uint32_t', |
| 2719 | [], |
| 2720 | is_const=True) |
| 2721 | ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function] |
| 2722 | cls.add_method('GetUid', |
| 2723 | 'uint64_t', |
| 2724 | [], |
| 2725 | is_const=True) |
| 2726 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function] |
| 2727 | cls.add_method('RemoveAtEnd', |
| 2728 | 'void', |
| 2729 | [param('uint32_t', 'end')]) |
| 2730 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function] |
| 2731 | cls.add_method('RemoveAtStart', |
| 2732 | 'void', |
| 2733 | [param('uint32_t', 'start')]) |
| 2734 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function] |
| 2735 | cls.add_method('RemoveHeader', |
| 2736 | 'void', |
| 2737 | [param('ns3::Header const &', 'header'), param('uint32_t', 'size')]) |
| 2738 | ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function] |
| 2739 | cls.add_method('RemoveTrailer', |
| 2740 | 'void', |
| 2741 | [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')]) |
| 2742 | ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 2743 | cls.add_method('Serialize', |
| 2744 | 'uint32_t', |
| 2745 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 2746 | is_const=True) |
| 2747 | return |
| 2748 | |
| 2749 | def register_Ns3PacketMetadataItem_methods(root_module, cls): |
| 2750 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor] |
| 2751 | cls.add_constructor([]) |
| 2752 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor] |
| 2753 | cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')]) |
| 2754 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable] |
| 2755 | cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False) |
| 2756 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable] |
| 2757 | cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False) |
| 2758 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable] |
| 2759 | cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False) |
| 2760 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable] |
| 2761 | cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False) |
| 2762 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable] |
| 2763 | cls.add_instance_attribute('isFragment', 'bool', is_const=False) |
| 2764 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable] |
| 2765 | cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False) |
| 2766 | return |
| 2767 | |
| 2768 | def register_Ns3PacketMetadataItemIterator_methods(root_module, cls): |
| 2769 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor] |
| 2770 | cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')]) |
| 2771 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor] |
| 2772 | cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')]) |
| 2773 | ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function] |
| 2774 | cls.add_method('HasNext', |
| 2775 | 'bool', |
| 2776 | [], |
| 2777 | is_const=True) |
| 2778 | ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function] |
| 2779 | cls.add_method('Next', |
| 2780 | 'ns3::PacketMetadata::Item', |
| 2781 | []) |
| 2782 | return |
| 2783 | |
| 2784 | def register_Ns3PacketTagIterator_methods(root_module, cls): |
| 2785 | ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor] |
| 2786 | cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')]) |
| 2787 | ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function] |
| 2788 | cls.add_method('HasNext', |
| 2789 | 'bool', |
| 2790 | [], |
| 2791 | is_const=True) |
| 2792 | ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function] |
| 2793 | cls.add_method('Next', |
| 2794 | 'ns3::PacketTagIterator::Item', |
| 2795 | []) |
| 2796 | return |
| 2797 | |
| 2798 | def register_Ns3PacketTagIteratorItem_methods(root_module, cls): |
| 2799 | ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor] |
| 2800 | cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')]) |
| 2801 | ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function] |
| 2802 | cls.add_method('GetTag', |
| 2803 | 'void', |
| 2804 | [param('ns3::Tag &', 'tag')], |
| 2805 | is_const=True) |
| 2806 | ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function] |
| 2807 | cls.add_method('GetTypeId', |
| 2808 | 'ns3::TypeId', |
| 2809 | [], |
| 2810 | is_const=True) |
| 2811 | return |
| 2812 | |
| 2813 | def register_Ns3PacketTagList_methods(root_module, cls): |
| 2814 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor] |
| 2815 | cls.add_constructor([]) |
| 2816 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor] |
| 2817 | cls.add_constructor([param('ns3::PacketTagList const &', 'o')]) |
| 2818 | ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function] |
| 2819 | cls.add_method('Add', |
| 2820 | 'void', |
| 2821 | [param('ns3::Tag const &', 'tag')], |
| 2822 | is_const=True) |
| 2823 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function] |
| 2824 | cls.add_method('Head', |
| 2825 | 'ns3::PacketTagList::TagData const *', |
| 2826 | [], |
| 2827 | is_const=True) |
| 2828 | ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function] |
| 2829 | cls.add_method('Peek', |
| 2830 | 'bool', |
| 2831 | [param('ns3::Tag &', 'tag')], |
| 2832 | is_const=True) |
| 2833 | ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function] |
| 2834 | cls.add_method('Remove', |
| 2835 | 'bool', |
| 2836 | [param('ns3::Tag &', 'tag')]) |
| 2837 | ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function] |
| 2838 | cls.add_method('RemoveAll', |
| 2839 | 'void', |
| 2840 | []) |
| 2841 | return |
| 2842 | |
| 2843 | def register_Ns3PacketTagListTagData_methods(root_module, cls): |
| 2844 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor] |
| 2845 | cls.add_constructor([]) |
| 2846 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor] |
| 2847 | cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')]) |
| 2848 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable] |
| 2849 | cls.add_instance_attribute('count', 'uint32_t', is_const=False) |
| 2850 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable] |
| 2851 | cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False) |
| 2852 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable] |
| 2853 | cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False) |
| 2854 | ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable] |
| 2855 | cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False) |
| 2856 | return |
| 2857 | |
| 2858 | def register_Ns3PcapFile_methods(root_module, cls): |
| 2859 | ## pcap-file.h (module 'network'): ns3::PcapFile::PcapFile() [constructor] |
| 2860 | cls.add_constructor([]) |
| 2861 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Clear() [member function] |
| 2862 | cls.add_method('Clear', |
| 2863 | 'void', |
| 2864 | []) |
| 2865 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Close() [member function] |
| 2866 | cls.add_method('Close', |
| 2867 | 'void', |
| 2868 | []) |
| 2869 | ## pcap-file.h (module 'network'): static bool ns3::PcapFile::Diff(std::string const & f1, std::string const & f2, uint32_t & sec, uint32_t & usec, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT) [member function] |
| 2870 | cls.add_method('Diff', |
| 2871 | 'bool', |
| 2872 | [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint32_t &', 'sec'), param('uint32_t &', 'usec'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT')], |
| 2873 | is_static=True) |
| 2874 | ## pcap-file.h (module 'network'): bool ns3::PcapFile::Eof() const [member function] |
| 2875 | cls.add_method('Eof', |
| 2876 | 'bool', |
| 2877 | [], |
| 2878 | is_const=True) |
| 2879 | ## pcap-file.h (module 'network'): bool ns3::PcapFile::Fail() const [member function] |
| 2880 | cls.add_method('Fail', |
| 2881 | 'bool', |
| 2882 | [], |
| 2883 | is_const=True) |
| 2884 | ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetDataLinkType() [member function] |
| 2885 | cls.add_method('GetDataLinkType', |
| 2886 | 'uint32_t', |
| 2887 | []) |
| 2888 | ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetMagic() [member function] |
| 2889 | cls.add_method('GetMagic', |
| 2890 | 'uint32_t', |
| 2891 | []) |
| 2892 | ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSigFigs() [member function] |
| 2893 | cls.add_method('GetSigFigs', |
| 2894 | 'uint32_t', |
| 2895 | []) |
| 2896 | ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSnapLen() [member function] |
| 2897 | cls.add_method('GetSnapLen', |
| 2898 | 'uint32_t', |
| 2899 | []) |
| 2900 | ## pcap-file.h (module 'network'): bool ns3::PcapFile::GetSwapMode() [member function] |
| 2901 | cls.add_method('GetSwapMode', |
| 2902 | 'bool', |
| 2903 | []) |
| 2904 | ## pcap-file.h (module 'network'): int32_t ns3::PcapFile::GetTimeZoneOffset() [member function] |
| 2905 | cls.add_method('GetTimeZoneOffset', |
| 2906 | 'int32_t', |
| 2907 | []) |
| 2908 | ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMajor() [member function] |
| 2909 | cls.add_method('GetVersionMajor', |
| 2910 | 'uint16_t', |
| 2911 | []) |
| 2912 | ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMinor() [member function] |
| 2913 | cls.add_method('GetVersionMinor', |
| 2914 | 'uint16_t', |
| 2915 | []) |
| 2916 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Init(uint32_t dataLinkType, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT, int32_t timeZoneCorrection=ns3::PcapFile::ZONE_DEFAULT, bool swapMode=false) [member function] |
| 2917 | cls.add_method('Init', |
| 2918 | 'void', |
| 2919 | [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT'), param('int32_t', 'timeZoneCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT'), param('bool', 'swapMode', default_value='false')]) |
| 2920 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Open(std::string const & filename, std::_Ios_Openmode mode) [member function] |
| 2921 | cls.add_method('Open', |
| 2922 | 'void', |
| 2923 | [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')]) |
| 2924 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Read(uint8_t * const data, uint32_t maxBytes, uint32_t & tsSec, uint32_t & tsUsec, uint32_t & inclLen, uint32_t & origLen, uint32_t & readLen) [member function] |
| 2925 | cls.add_method('Read', |
| 2926 | 'void', |
| 2927 | [param('uint8_t * const', 'data'), param('uint32_t', 'maxBytes'), param('uint32_t &', 'tsSec'), param('uint32_t &', 'tsUsec'), param('uint32_t &', 'inclLen'), param('uint32_t &', 'origLen'), param('uint32_t &', 'readLen')]) |
| 2928 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, uint8_t const * const data, uint32_t totalLen) [member function] |
| 2929 | cls.add_method('Write', |
| 2930 | 'void', |
| 2931 | [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('uint8_t const * const', 'data'), param('uint32_t', 'totalLen')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 2932 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2933 | cls.add_method('Write', |
| 2934 | 'void', |
| 2935 | [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Ptr< ns3::Packet const >', 'p')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 2936 | ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Header & header, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 2937 | cls.add_method('Write', |
| 2938 | 'void', |
| 2939 | [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')]) |
| 2940 | ## pcap-file.h (module 'network'): ns3::PcapFile::SNAPLEN_DEFAULT [variable] |
| 2941 | cls.add_static_attribute('SNAPLEN_DEFAULT', 'uint32_t const', is_const=True) |
| 2942 | ## pcap-file.h (module 'network'): ns3::PcapFile::ZONE_DEFAULT [variable] |
| 2943 | cls.add_static_attribute('ZONE_DEFAULT', 'int32_t const', is_const=True) |
| 2944 | return |
| 2945 | |
| 2946 | def register_Ns3PcapHelper_methods(root_module, cls): |
| 2947 | ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper(ns3::PcapHelper const & arg0) [copy constructor] |
| 2948 | cls.add_constructor([param('ns3::PcapHelper const &', 'arg0')]) |
| 2949 | ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper() [constructor] |
| 2950 | cls.add_constructor([]) |
| 2951 | ## trace-helper.h (module 'network'): ns3::Ptr<ns3::PcapFileWrapper> ns3::PcapHelper::CreateFile(std::string filename, std::_Ios_Openmode filemode, uint32_t dataLinkType, uint32_t snapLen=65535, int32_t tzCorrection=0) [member function] |
| 2952 | cls.add_method('CreateFile', |
| 2953 | 'ns3::Ptr< ns3::PcapFileWrapper >', |
| 2954 | [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode'), param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='65535'), param('int32_t', 'tzCorrection', default_value='0')]) |
| 2955 | ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function] |
| 2956 | cls.add_method('GetFilenameFromDevice', |
| 2957 | 'std::string', |
| 2958 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')]) |
| 2959 | ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function] |
| 2960 | cls.add_method('GetFilenameFromInterfacePair', |
| 2961 | 'std::string', |
| 2962 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')]) |
| 2963 | return |
| 2964 | |
| 2965 | def register_Ns3PcapHelperForCcnx_methods(root_module, cls): |
| 2966 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx::PcapHelperForCcnx(ns3::PcapHelperForCcnx const & arg0) [copy constructor] |
| 2967 | cls.add_constructor([param('ns3::PcapHelperForCcnx const &', 'arg0')]) |
| 2968 | ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx::PcapHelperForCcnx() [constructor] |
| 2969 | cls.add_constructor([]) |
| 2970 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename=false) [member function] |
| 2971 | cls.add_method('EnablePcapCcnx', |
| 2972 | 'void', |
| 2973 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')]) |
| 2974 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, std::string ccnxName, uint32_t interface, bool explicitFilename=false) [member function] |
| 2975 | cls.add_method('EnablePcapCcnx', |
| 2976 | 'void', |
| 2977 | [param('std::string', 'prefix'), param('std::string', 'ccnxName'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')]) |
| 2978 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::CcnxFaceContainer c) [member function] |
| 2979 | cls.add_method('EnablePcapCcnx', |
| 2980 | 'void', |
| 2981 | [param('std::string', 'prefix'), param('ns3::CcnxFaceContainer', 'c')]) |
| 2982 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::NodeContainer n) [member function] |
| 2983 | cls.add_method('EnablePcapCcnx', |
| 2984 | 'void', |
| 2985 | [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')]) |
| 2986 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, uint32_t nodeid, uint32_t interface, bool explicitFilename) [member function] |
| 2987 | cls.add_method('EnablePcapCcnx', |
| 2988 | 'void', |
| 2989 | [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')]) |
| 2990 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnxAll(std::string prefix) [member function] |
| 2991 | cls.add_method('EnablePcapCcnxAll', |
| 2992 | 'void', |
| 2993 | [param('std::string', 'prefix')]) |
| 2994 | ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnxInternal(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function] |
| 2995 | cls.add_method('EnablePcapCcnxInternal', |
| 2996 | 'void', |
| 2997 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')], |
| 2998 | is_pure_virtual=True, is_virtual=True) |
| 2999 | return |
| 3000 | |
| 3001 | def register_Ns3PcapHelperForDevice_methods(root_module, cls): |
| 3002 | ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice(ns3::PcapHelperForDevice const & arg0) [copy constructor] |
| 3003 | cls.add_constructor([param('ns3::PcapHelperForDevice const &', 'arg0')]) |
| 3004 | ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice() [constructor] |
| 3005 | cls.add_constructor([]) |
| 3006 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous=false, bool explicitFilename=false) [member function] |
| 3007 | cls.add_method('EnablePcap', |
| 3008 | 'void', |
| 3009 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')]) |
| 3010 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, std::string ndName, bool promiscuous=false, bool explicitFilename=false) [member function] |
| 3011 | cls.add_method('EnablePcap', |
| 3012 | 'void', |
| 3013 | [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')]) |
| 3014 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NetDeviceContainer d, bool promiscuous=false) [member function] |
| 3015 | cls.add_method('EnablePcap', |
| 3016 | 'void', |
| 3017 | [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous', default_value='false')]) |
| 3018 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NodeContainer n, bool promiscuous=false) [member function] |
| 3019 | cls.add_method('EnablePcap', |
| 3020 | 'void', |
| 3021 | [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous', default_value='false')]) |
| 3022 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool promiscuous=false) [member function] |
| 3023 | cls.add_method('EnablePcap', |
| 3024 | 'void', |
| 3025 | [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous', default_value='false')]) |
| 3026 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapAll(std::string prefix, bool promiscuous=false) [member function] |
| 3027 | cls.add_method('EnablePcapAll', |
| 3028 | 'void', |
| 3029 | [param('std::string', 'prefix'), param('bool', 'promiscuous', default_value='false')]) |
| 3030 | ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapInternal(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous, bool explicitFilename) [member function] |
| 3031 | cls.add_method('EnablePcapInternal', |
| 3032 | 'void', |
| 3033 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous'), param('bool', 'explicitFilename')], |
| 3034 | is_pure_virtual=True, is_virtual=True) |
| 3035 | return |
| 3036 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3037 | def register_Ns3PointToPointHelper_methods(root_module, cls): |
| 3038 | ## point-to-point-helper.h (module 'point-to-point'): ns3::PointToPointHelper::PointToPointHelper(ns3::PointToPointHelper const & arg0) [copy constructor] |
| 3039 | cls.add_constructor([param('ns3::PointToPointHelper const &', 'arg0')]) |
| 3040 | ## point-to-point-helper.h (module 'point-to-point'): ns3::PointToPointHelper::PointToPointHelper() [constructor] |
| 3041 | cls.add_constructor([]) |
| 3042 | ## point-to-point-helper.h (module 'point-to-point'): ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::NodeContainer c) [member function] |
| 3043 | cls.add_method('Install', |
| 3044 | 'ns3::NetDeviceContainer', |
| 3045 | [param('ns3::NodeContainer', 'c')]) |
| 3046 | ## point-to-point-helper.h (module 'point-to-point'): ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::Ptr<ns3::Node> a, ns3::Ptr<ns3::Node> b) [member function] |
| 3047 | cls.add_method('Install', |
| 3048 | 'ns3::NetDeviceContainer', |
| 3049 | [param('ns3::Ptr< ns3::Node >', 'a'), param('ns3::Ptr< ns3::Node >', 'b')]) |
| 3050 | ## point-to-point-helper.h (module 'point-to-point'): ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::Ptr<ns3::Node> a, std::string bName) [member function] |
| 3051 | cls.add_method('Install', |
| 3052 | 'ns3::NetDeviceContainer', |
| 3053 | [param('ns3::Ptr< ns3::Node >', 'a'), param('std::string', 'bName')]) |
| 3054 | ## point-to-point-helper.h (module 'point-to-point'): ns3::NetDeviceContainer ns3::PointToPointHelper::Install(std::string aName, ns3::Ptr<ns3::Node> b) [member function] |
| 3055 | cls.add_method('Install', |
| 3056 | 'ns3::NetDeviceContainer', |
| 3057 | [param('std::string', 'aName'), param('ns3::Ptr< ns3::Node >', 'b')]) |
| 3058 | ## point-to-point-helper.h (module 'point-to-point'): ns3::NetDeviceContainer ns3::PointToPointHelper::Install(std::string aNode, std::string bNode) [member function] |
| 3059 | cls.add_method('Install', |
| 3060 | 'ns3::NetDeviceContainer', |
| 3061 | [param('std::string', 'aNode'), param('std::string', 'bNode')]) |
| 3062 | ## point-to-point-helper.h (module 'point-to-point'): void ns3::PointToPointHelper::SetChannelAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 3063 | cls.add_method('SetChannelAttribute', |
| 3064 | 'void', |
| 3065 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 3066 | ## point-to-point-helper.h (module 'point-to-point'): void ns3::PointToPointHelper::SetDeviceAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 3067 | cls.add_method('SetDeviceAttribute', |
| 3068 | 'void', |
| 3069 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
| 3070 | ## point-to-point-helper.h (module 'point-to-point'): void ns3::PointToPointHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function] |
| 3071 | cls.add_method('SetQueue', |
| 3072 | 'void', |
| 3073 | [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')]) |
| 3074 | ## point-to-point-helper.h (module 'point-to-point'): void ns3::PointToPointHelper::EnableAsciiInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename) [member function] |
| 3075 | cls.add_method('EnableAsciiInternal', |
| 3076 | 'void', |
| 3077 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename')], |
| 3078 | visibility='private', is_virtual=True) |
| 3079 | ## point-to-point-helper.h (module 'point-to-point'): void ns3::PointToPointHelper::EnablePcapInternal(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous, bool explicitFilename) [member function] |
| 3080 | cls.add_method('EnablePcapInternal', |
| 3081 | 'void', |
| 3082 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous'), param('bool', 'explicitFilename')], |
| 3083 | visibility='private', is_virtual=True) |
| 3084 | return |
| 3085 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3086 | def register_Ns3RandomVariable_methods(root_module, cls): |
| 3087 | cls.add_output_stream_operator() |
| 3088 | ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor] |
| 3089 | cls.add_constructor([]) |
| 3090 | ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor] |
| 3091 | cls.add_constructor([param('ns3::RandomVariable const &', 'o')]) |
| 3092 | ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function] |
| 3093 | cls.add_method('GetInteger', |
| 3094 | 'uint32_t', |
| 3095 | [], |
| 3096 | is_const=True) |
| 3097 | ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function] |
| 3098 | cls.add_method('GetValue', |
| 3099 | 'double', |
| 3100 | [], |
| 3101 | is_const=True) |
| 3102 | return |
| 3103 | |
| 3104 | def register_Ns3SeedManager_methods(root_module, cls): |
| 3105 | ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor] |
| 3106 | cls.add_constructor([]) |
| 3107 | ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor] |
| 3108 | cls.add_constructor([param('ns3::SeedManager const &', 'arg0')]) |
| 3109 | ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function] |
| 3110 | cls.add_method('CheckSeed', |
| 3111 | 'bool', |
| 3112 | [param('uint32_t', 'seed')], |
| 3113 | is_static=True) |
| 3114 | ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function] |
| 3115 | cls.add_method('GetRun', |
| 3116 | 'uint32_t', |
| 3117 | [], |
| 3118 | is_static=True) |
| 3119 | ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function] |
| 3120 | cls.add_method('GetSeed', |
| 3121 | 'uint32_t', |
| 3122 | [], |
| 3123 | is_static=True) |
| 3124 | ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function] |
| 3125 | cls.add_method('SetRun', |
| 3126 | 'void', |
| 3127 | [param('uint32_t', 'run')], |
| 3128 | is_static=True) |
| 3129 | ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function] |
| 3130 | cls.add_method('SetSeed', |
| 3131 | 'void', |
| 3132 | [param('uint32_t', 'seed')], |
| 3133 | is_static=True) |
| 3134 | return |
| 3135 | |
| 3136 | def register_Ns3SequentialVariable_methods(root_module, cls): |
| 3137 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor] |
| 3138 | cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')]) |
| 3139 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor] |
| 3140 | cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')]) |
| 3141 | ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor] |
| 3142 | cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')]) |
| 3143 | return |
| 3144 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3145 | def register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, cls): |
| 3146 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount() [constructor] |
| 3147 | cls.add_constructor([]) |
| 3148 | ## 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] |
| 3149 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter< ns3::Chunk > > const &', 'o')]) |
| 3150 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::Cleanup() [member function] |
| 3151 | cls.add_method('Cleanup', |
| 3152 | 'void', |
| 3153 | [], |
| 3154 | is_static=True) |
| 3155 | return |
| 3156 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3157 | def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls): |
| 3158 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor] |
| 3159 | cls.add_constructor([]) |
| 3160 | ## 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] |
| 3161 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')]) |
| 3162 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function] |
| 3163 | cls.add_method('Cleanup', |
| 3164 | 'void', |
| 3165 | [], |
| 3166 | is_static=True) |
| 3167 | return |
| 3168 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3169 | def register_Ns3Simulator_methods(root_module, cls): |
| 3170 | ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor] |
| 3171 | cls.add_constructor([param('ns3::Simulator const &', 'arg0')]) |
| 3172 | ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function] |
| 3173 | cls.add_method('Cancel', |
| 3174 | 'void', |
| 3175 | [param('ns3::EventId const &', 'id')], |
| 3176 | is_static=True) |
| 3177 | ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function] |
| 3178 | cls.add_method('Destroy', |
| 3179 | 'void', |
| 3180 | [], |
| 3181 | is_static=True) |
| 3182 | ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function] |
| 3183 | cls.add_method('GetContext', |
| 3184 | 'uint32_t', |
| 3185 | [], |
| 3186 | is_static=True) |
| 3187 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function] |
| 3188 | cls.add_method('GetDelayLeft', |
| 3189 | 'ns3::Time', |
| 3190 | [param('ns3::EventId const &', 'id')], |
| 3191 | is_static=True) |
| 3192 | ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function] |
| 3193 | cls.add_method('GetImplementation', |
| 3194 | 'ns3::Ptr< ns3::SimulatorImpl >', |
| 3195 | [], |
| 3196 | is_static=True) |
| 3197 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function] |
| 3198 | cls.add_method('GetMaximumSimulationTime', |
| 3199 | 'ns3::Time', |
| 3200 | [], |
| 3201 | is_static=True) |
| 3202 | ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function] |
| 3203 | cls.add_method('GetSystemId', |
| 3204 | 'uint32_t', |
| 3205 | [], |
| 3206 | is_static=True) |
| 3207 | ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function] |
| 3208 | cls.add_method('IsExpired', |
| 3209 | 'bool', |
| 3210 | [param('ns3::EventId const &', 'id')], |
| 3211 | is_static=True) |
| 3212 | ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function] |
| 3213 | cls.add_method('IsFinished', |
| 3214 | 'bool', |
| 3215 | [], |
| 3216 | is_static=True) |
| 3217 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Next() [member function] |
| 3218 | cls.add_method('Next', |
| 3219 | 'ns3::Time', |
| 3220 | [], |
| 3221 | is_static=True, deprecated=True) |
| 3222 | ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function] |
| 3223 | cls.add_method('Now', |
| 3224 | 'ns3::Time', |
| 3225 | [], |
| 3226 | is_static=True) |
| 3227 | ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function] |
| 3228 | cls.add_method('Remove', |
| 3229 | 'void', |
| 3230 | [param('ns3::EventId const &', 'id')], |
| 3231 | is_static=True) |
| 3232 | ## simulator.h (module 'core'): static void ns3::Simulator::RunOneEvent() [member function] |
| 3233 | cls.add_method('RunOneEvent', |
| 3234 | 'void', |
| 3235 | [], |
| 3236 | is_static=True, deprecated=True) |
| 3237 | ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function] |
| 3238 | cls.add_method('SetImplementation', |
| 3239 | 'void', |
| 3240 | [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], |
| 3241 | is_static=True) |
| 3242 | ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function] |
| 3243 | cls.add_method('SetScheduler', |
| 3244 | 'void', |
| 3245 | [param('ns3::ObjectFactory', 'schedulerFactory')], |
| 3246 | is_static=True) |
| 3247 | ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function] |
| 3248 | cls.add_method('Stop', |
| 3249 | 'void', |
| 3250 | [], |
| 3251 | is_static=True) |
| 3252 | ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function] |
| 3253 | cls.add_method('Stop', |
| 3254 | 'void', |
| 3255 | [param('ns3::Time const &', 'time')], |
| 3256 | is_static=True) |
| 3257 | return |
| 3258 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3259 | def register_Ns3StupidInterestGeneratorHelper_methods(root_module, cls): |
| 3260 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper::StupidInterestGeneratorHelper(ns3::StupidInterestGeneratorHelper const & arg0) [copy constructor] |
| 3261 | cls.add_constructor([param('ns3::StupidInterestGeneratorHelper const &', 'arg0')]) |
| 3262 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper::StupidInterestGeneratorHelper(std::string protocol, ns3::Address address) [constructor] |
| 3263 | cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')]) |
| 3264 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(ns3::NodeContainer c) const [member function] |
| 3265 | cls.add_method('Install', |
| 3266 | 'ns3::ApplicationContainer', |
| 3267 | [param('ns3::NodeContainer', 'c')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3268 | is_const=True) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3269 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
| 3270 | cls.add_method('Install', |
| 3271 | 'ns3::ApplicationContainer', |
| 3272 | [param('ns3::Ptr< ns3::Node >', 'node')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3273 | is_const=True) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3274 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(std::string nodeName) const [member function] |
| 3275 | cls.add_method('Install', |
| 3276 | 'ns3::ApplicationContainer', |
| 3277 | [param('std::string', 'nodeName')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3278 | is_const=True) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3279 | ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): void ns3::StupidInterestGeneratorHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
| 3280 | cls.add_method('SetAttribute', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3281 | 'void', |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3282 | [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3283 | return |
| 3284 | |
| 3285 | def register_Ns3Tag_methods(root_module, cls): |
| 3286 | ## tag.h (module 'network'): ns3::Tag::Tag() [constructor] |
| 3287 | cls.add_constructor([]) |
| 3288 | ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor] |
| 3289 | cls.add_constructor([param('ns3::Tag const &', 'arg0')]) |
| 3290 | ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function] |
| 3291 | cls.add_method('Deserialize', |
| 3292 | 'void', |
| 3293 | [param('ns3::TagBuffer', 'i')], |
| 3294 | is_pure_virtual=True, is_virtual=True) |
| 3295 | ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function] |
| 3296 | cls.add_method('GetSerializedSize', |
| 3297 | 'uint32_t', |
| 3298 | [], |
| 3299 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3300 | ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function] |
| 3301 | cls.add_method('GetTypeId', |
| 3302 | 'ns3::TypeId', |
| 3303 | [], |
| 3304 | is_static=True) |
| 3305 | ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function] |
| 3306 | cls.add_method('Print', |
| 3307 | 'void', |
| 3308 | [param('std::ostream &', 'os')], |
| 3309 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3310 | ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function] |
| 3311 | cls.add_method('Serialize', |
| 3312 | 'void', |
| 3313 | [param('ns3::TagBuffer', 'i')], |
| 3314 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3315 | return |
| 3316 | |
| 3317 | def register_Ns3TagBuffer_methods(root_module, cls): |
| 3318 | ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor] |
| 3319 | cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')]) |
| 3320 | ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor] |
| 3321 | cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')]) |
| 3322 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function] |
| 3323 | cls.add_method('CopyFrom', |
| 3324 | 'void', |
| 3325 | [param('ns3::TagBuffer', 'o')]) |
| 3326 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function] |
| 3327 | cls.add_method('Read', |
| 3328 | 'void', |
| 3329 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')]) |
| 3330 | ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function] |
| 3331 | cls.add_method('ReadDouble', |
| 3332 | 'double', |
| 3333 | []) |
| 3334 | ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function] |
| 3335 | cls.add_method('ReadU16', |
| 3336 | 'uint16_t', |
| 3337 | []) |
| 3338 | ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function] |
| 3339 | cls.add_method('ReadU32', |
| 3340 | 'uint32_t', |
| 3341 | []) |
| 3342 | ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function] |
| 3343 | cls.add_method('ReadU64', |
| 3344 | 'uint64_t', |
| 3345 | []) |
| 3346 | ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function] |
| 3347 | cls.add_method('ReadU8', |
| 3348 | 'uint8_t', |
| 3349 | []) |
| 3350 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function] |
| 3351 | cls.add_method('TrimAtEnd', |
| 3352 | 'void', |
| 3353 | [param('uint32_t', 'trim')]) |
| 3354 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function] |
| 3355 | cls.add_method('Write', |
| 3356 | 'void', |
| 3357 | [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 3358 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function] |
| 3359 | cls.add_method('WriteDouble', |
| 3360 | 'void', |
| 3361 | [param('double', 'v')]) |
| 3362 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function] |
| 3363 | cls.add_method('WriteU16', |
| 3364 | 'void', |
| 3365 | [param('uint16_t', 'data')]) |
| 3366 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function] |
| 3367 | cls.add_method('WriteU32', |
| 3368 | 'void', |
| 3369 | [param('uint32_t', 'data')]) |
| 3370 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function] |
| 3371 | cls.add_method('WriteU64', |
| 3372 | 'void', |
| 3373 | [param('uint64_t', 'v')]) |
| 3374 | ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function] |
| 3375 | cls.add_method('WriteU8', |
| 3376 | 'void', |
| 3377 | [param('uint8_t', 'v')]) |
| 3378 | return |
| 3379 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3380 | def register_Ns3TriangularVariable_methods(root_module, cls): |
| 3381 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor] |
| 3382 | cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')]) |
| 3383 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3384 | cls.add_constructor([]) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3385 | ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor] |
| 3386 | cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3387 | return |
| 3388 | |
| 3389 | def register_Ns3TypeId_methods(root_module, cls): |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3390 | cls.add_binary_comparison_operator('!=') |
| 3391 | cls.add_output_stream_operator() |
| 3392 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3393 | cls.add_binary_comparison_operator('<') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3394 | ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor] |
| 3395 | cls.add_constructor([param('char const *', 'name')]) |
| 3396 | ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor] |
| 3397 | cls.add_constructor([]) |
| 3398 | ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor] |
| 3399 | cls.add_constructor([param('ns3::TypeId const &', 'o')]) |
| 3400 | ## 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] |
| 3401 | cls.add_method('AddAttribute', |
| 3402 | 'ns3::TypeId', |
| 3403 | [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')]) |
| 3404 | ## 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] |
| 3405 | cls.add_method('AddAttribute', |
| 3406 | 'ns3::TypeId', |
| 3407 | [param('std::string', 'name'), param('std::string', 'help'), param('uint32_t', 'flags'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3408 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3409 | cls.add_method('AddTraceSource', |
| 3410 | 'ns3::TypeId', |
| 3411 | [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3412 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function] |
| 3413 | cls.add_method('GetAttribute', |
| 3414 | 'ns3::TypeId::AttributeInformation', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3415 | [param('uint32_t', 'i')], |
| 3416 | is_const=True) |
| 3417 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function] |
| 3418 | cls.add_method('GetAttributeFullName', |
| 3419 | 'std::string', |
| 3420 | [param('uint32_t', 'i')], |
| 3421 | is_const=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3422 | ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function] |
| 3423 | cls.add_method('GetAttributeN', |
| 3424 | 'uint32_t', |
| 3425 | [], |
| 3426 | is_const=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3427 | ## 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] |
| 3428 | cls.add_method('GetConstructor', |
| 3429 | 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
| 3430 | [], |
| 3431 | is_const=True) |
| 3432 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function] |
| 3433 | cls.add_method('GetGroupName', |
| 3434 | 'std::string', |
| 3435 | [], |
| 3436 | is_const=True) |
| 3437 | ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function] |
| 3438 | cls.add_method('GetName', |
| 3439 | 'std::string', |
| 3440 | [], |
| 3441 | is_const=True) |
| 3442 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function] |
| 3443 | cls.add_method('GetParent', |
| 3444 | 'ns3::TypeId', |
| 3445 | [], |
| 3446 | is_const=True) |
| 3447 | ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function] |
| 3448 | cls.add_method('GetRegistered', |
| 3449 | 'ns3::TypeId', |
| 3450 | [param('uint32_t', 'i')], |
| 3451 | is_static=True) |
| 3452 | ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function] |
| 3453 | cls.add_method('GetRegisteredN', |
| 3454 | 'uint32_t', |
| 3455 | [], |
| 3456 | is_static=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3457 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function] |
| 3458 | cls.add_method('GetTraceSource', |
| 3459 | 'ns3::TypeId::TraceSourceInformation', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3460 | [param('uint32_t', 'i')], |
| 3461 | is_const=True) |
| 3462 | ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function] |
| 3463 | cls.add_method('GetTraceSourceN', |
| 3464 | 'uint32_t', |
| 3465 | [], |
| 3466 | is_const=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3467 | ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function] |
| 3468 | cls.add_method('GetUid', |
| 3469 | 'uint16_t', |
| 3470 | [], |
| 3471 | is_const=True) |
| 3472 | ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function] |
| 3473 | cls.add_method('HasConstructor', |
| 3474 | 'bool', |
| 3475 | [], |
| 3476 | is_const=True) |
| 3477 | ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function] |
| 3478 | cls.add_method('HasParent', |
| 3479 | 'bool', |
| 3480 | [], |
| 3481 | is_const=True) |
| 3482 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function] |
| 3483 | cls.add_method('HideFromDocumentation', |
| 3484 | 'ns3::TypeId', |
| 3485 | []) |
| 3486 | ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function] |
| 3487 | cls.add_method('IsChildOf', |
| 3488 | 'bool', |
| 3489 | [param('ns3::TypeId', 'other')], |
| 3490 | is_const=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3491 | ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3492 | cls.add_method('LookupAttributeByName', |
| 3493 | 'bool', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3494 | [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3495 | is_const=True) |
| 3496 | ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function] |
| 3497 | cls.add_method('LookupByName', |
| 3498 | 'ns3::TypeId', |
| 3499 | [param('std::string', 'name')], |
| 3500 | is_static=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3501 | ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3502 | cls.add_method('LookupTraceSourceByName', |
| 3503 | 'ns3::Ptr< ns3::TraceSourceAccessor const >', |
| 3504 | [param('std::string', 'name')], |
| 3505 | is_const=True) |
| 3506 | ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function] |
| 3507 | cls.add_method('MustHideFromDocumentation', |
| 3508 | 'bool', |
| 3509 | [], |
| 3510 | is_const=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3511 | ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function] |
| 3512 | cls.add_method('SetAttributeInitialValue', |
| 3513 | 'bool', |
| 3514 | [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3515 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function] |
| 3516 | cls.add_method('SetGroupName', |
| 3517 | 'ns3::TypeId', |
| 3518 | [param('std::string', 'groupName')]) |
| 3519 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function] |
| 3520 | cls.add_method('SetParent', |
| 3521 | 'ns3::TypeId', |
| 3522 | [param('ns3::TypeId', 'tid')]) |
| 3523 | ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function] |
| 3524 | cls.add_method('SetUid', |
| 3525 | 'void', |
| 3526 | [param('uint16_t', 'tid')]) |
| 3527 | return |
| 3528 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3529 | def register_Ns3TypeIdAttributeInformation_methods(root_module, cls): |
| 3530 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3531 | cls.add_constructor([]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3532 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor] |
| 3533 | cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')]) |
| 3534 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3535 | cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3536 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3537 | cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3538 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3539 | cls.add_instance_attribute('flags', 'uint32_t', is_const=False) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3540 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable] |
| 3541 | cls.add_instance_attribute('help', 'std::string', is_const=False) |
| 3542 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3543 | cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3544 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable] |
| 3545 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
| 3546 | ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable] |
| 3547 | cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
| 3548 | return |
| 3549 | |
| 3550 | def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls): |
| 3551 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor] |
| 3552 | cls.add_constructor([]) |
| 3553 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor] |
| 3554 | cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')]) |
| 3555 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable] |
| 3556 | cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False) |
| 3557 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable] |
| 3558 | cls.add_instance_attribute('help', 'std::string', is_const=False) |
| 3559 | ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable] |
| 3560 | cls.add_instance_attribute('name', 'std::string', is_const=False) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3561 | return |
| 3562 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3563 | def register_Ns3UniformVariable_methods(root_module, cls): |
| 3564 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor] |
| 3565 | cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')]) |
| 3566 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor] |
| 3567 | cls.add_constructor([]) |
| 3568 | ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor] |
| 3569 | cls.add_constructor([param('double', 's'), param('double', 'l')]) |
| 3570 | ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function] |
| 3571 | cls.add_method('GetInteger', |
| 3572 | 'uint32_t', |
| 3573 | [param('uint32_t', 's'), param('uint32_t', 'l')]) |
| 3574 | ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function] |
| 3575 | cls.add_method('GetValue', |
| 3576 | 'double', |
| 3577 | [], |
| 3578 | is_const=True) |
| 3579 | ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function] |
| 3580 | cls.add_method('GetValue', |
| 3581 | 'double', |
| 3582 | [param('double', 's'), param('double', 'l')]) |
| 3583 | return |
| 3584 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3585 | def register_Ns3WeibullVariable_methods(root_module, cls): |
| 3586 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor] |
| 3587 | cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')]) |
| 3588 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor] |
| 3589 | cls.add_constructor([]) |
| 3590 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor] |
| 3591 | cls.add_constructor([param('double', 'm')]) |
| 3592 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor] |
| 3593 | cls.add_constructor([param('double', 'm'), param('double', 's')]) |
| 3594 | ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor] |
| 3595 | cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')]) |
| 3596 | return |
| 3597 | |
| 3598 | def register_Ns3ZetaVariable_methods(root_module, cls): |
| 3599 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor] |
| 3600 | cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')]) |
| 3601 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor] |
| 3602 | cls.add_constructor([param('double', 'alpha')]) |
| 3603 | ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor] |
| 3604 | cls.add_constructor([]) |
| 3605 | return |
| 3606 | |
| 3607 | def register_Ns3ZipfVariable_methods(root_module, cls): |
| 3608 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor] |
| 3609 | cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')]) |
| 3610 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor] |
| 3611 | cls.add_constructor([param('long int', 'N'), param('double', 'alpha')]) |
| 3612 | ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor] |
| 3613 | cls.add_constructor([]) |
| 3614 | return |
| 3615 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3616 | def register_Ns3Empty_methods(root_module, cls): |
| 3617 | ## empty.h (module 'core'): ns3::empty::empty() [constructor] |
| 3618 | cls.add_constructor([]) |
| 3619 | ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor] |
| 3620 | cls.add_constructor([param('ns3::empty const &', 'arg0')]) |
| 3621 | return |
| 3622 | |
| 3623 | def register_Ns3Int64x64_t_methods(root_module, cls): |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3624 | cls.add_binary_comparison_operator('<=') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3625 | cls.add_binary_comparison_operator('!=') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3626 | cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right')) |
| 3627 | cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right')) |
| 3628 | cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right')) |
| 3629 | cls.add_output_stream_operator() |
| 3630 | cls.add_binary_comparison_operator('==') |
| 3631 | cls.add_binary_comparison_operator('>=') |
| 3632 | cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right')) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3633 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3634 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3635 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3636 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3637 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3638 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3639 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3640 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3641 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3642 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3643 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3644 | cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3645 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3646 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3647 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3648 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3649 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3650 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3651 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3652 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3653 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3654 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3655 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3656 | cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3657 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3658 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3659 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3660 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3661 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3662 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3663 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3664 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3665 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3666 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3667 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3668 | cls.add_unary_numeric_operator('-') |
| 3669 | cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3670 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
| 3671 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
| 3672 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
| 3673 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
| 3674 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
| 3675 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
| 3676 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
| 3677 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
| 3678 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
| 3679 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
| 3680 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
| 3681 | cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
| 3682 | cls.add_binary_comparison_operator('<') |
| 3683 | cls.add_binary_comparison_operator('>') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3684 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor] |
| 3685 | cls.add_constructor([]) |
| 3686 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor] |
| 3687 | cls.add_constructor([param('double', 'v')]) |
| 3688 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor] |
| 3689 | cls.add_constructor([param('int', 'v')]) |
| 3690 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor] |
| 3691 | cls.add_constructor([param('long int', 'v')]) |
| 3692 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor] |
| 3693 | cls.add_constructor([param('long long int', 'v')]) |
| 3694 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor] |
| 3695 | cls.add_constructor([param('unsigned int', 'v')]) |
| 3696 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor] |
| 3697 | cls.add_constructor([param('long unsigned int', 'v')]) |
| 3698 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor] |
| 3699 | cls.add_constructor([param('long long unsigned int', 'v')]) |
| 3700 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor] |
| 3701 | cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')]) |
| 3702 | ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor] |
| 3703 | cls.add_constructor([param('ns3::int64x64_t const &', 'o')]) |
| 3704 | ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function] |
| 3705 | cls.add_method('GetDouble', |
| 3706 | 'double', |
| 3707 | [], |
| 3708 | is_const=True) |
| 3709 | ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function] |
| 3710 | cls.add_method('GetHigh', |
| 3711 | 'int64_t', |
| 3712 | [], |
| 3713 | is_const=True) |
| 3714 | ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function] |
| 3715 | cls.add_method('GetLow', |
| 3716 | 'uint64_t', |
| 3717 | [], |
| 3718 | is_const=True) |
| 3719 | ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function] |
| 3720 | cls.add_method('Invert', |
| 3721 | 'ns3::int64x64_t', |
| 3722 | [param('uint64_t', 'v')], |
| 3723 | is_static=True) |
| 3724 | ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function] |
| 3725 | cls.add_method('MulByInvert', |
| 3726 | 'void', |
| 3727 | [param('ns3::int64x64_t const &', 'o')]) |
| 3728 | return |
| 3729 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3730 | def register_Ns3CcnxStackHelper_methods(root_module, cls): |
| 3731 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor] |
| 3732 | cls.add_constructor([]) |
| 3733 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper(ns3::CcnxStackHelper const & arg0) [copy constructor] |
| 3734 | cls.add_constructor([param('ns3::CcnxStackHelper const &', 'arg0')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3735 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(std::string nodeName) const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3736 | cls.add_method('Install', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3737 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3738 | [param('std::string', 'nodeName')], |
| 3739 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3740 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3741 | cls.add_method('Install', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3742 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3743 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 3744 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3745 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3746 | cls.add_method('Install', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3747 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3748 | [param('ns3::NodeContainer', 'c')], |
| 3749 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3750 | ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::InstallAll() const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3751 | cls.add_method('InstallAll', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 3752 | 'ns3::Ptr< ns3::CcnxFaceContainer >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 3753 | [], |
| 3754 | is_const=True) |
| 3755 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::Reset() [member function] |
| 3756 | cls.add_method('Reset', |
| 3757 | 'void', |
| 3758 | []) |
| 3759 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetCcnxStackInstall(bool enable) [member function] |
| 3760 | cls.add_method('SetCcnxStackInstall', |
| 3761 | 'void', |
| 3762 | [param('bool', 'enable')]) |
| 3763 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetForwardingHelper(ns3::CcnxForwardingHelper const & forwarding) [member function] |
| 3764 | cls.add_method('SetForwardingHelper', |
| 3765 | 'void', |
| 3766 | [param('ns3::CcnxForwardingHelper const &', 'forwarding')]) |
| 3767 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnableAsciiCcnxInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function] |
| 3768 | cls.add_method('EnableAsciiCcnxInternal', |
| 3769 | 'void', |
| 3770 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')], |
| 3771 | visibility='private', is_virtual=True) |
| 3772 | ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnablePcapCcnxInternal(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function] |
| 3773 | cls.add_method('EnablePcapCcnxInternal', |
| 3774 | 'void', |
| 3775 | [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')], |
| 3776 | visibility='private', is_virtual=True) |
| 3777 | return |
| 3778 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3779 | def register_Ns3Chunk_methods(root_module, cls): |
| 3780 | ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor] |
| 3781 | cls.add_constructor([]) |
| 3782 | ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor] |
| 3783 | cls.add_constructor([param('ns3::Chunk const &', 'arg0')]) |
| 3784 | ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3785 | cls.add_method('Deserialize', |
| 3786 | 'uint32_t', |
| 3787 | [param('ns3::Buffer::Iterator', 'start')], |
| 3788 | is_pure_virtual=True, is_virtual=True) |
| 3789 | ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function] |
| 3790 | cls.add_method('GetTypeId', |
| 3791 | 'ns3::TypeId', |
| 3792 | [], |
| 3793 | is_static=True) |
| 3794 | ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function] |
| 3795 | cls.add_method('Print', |
| 3796 | 'void', |
| 3797 | [param('std::ostream &', 'os')], |
| 3798 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3799 | return |
| 3800 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3801 | def register_Ns3ConstantVariable_methods(root_module, cls): |
| 3802 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor] |
| 3803 | cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')]) |
| 3804 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor] |
| 3805 | cls.add_constructor([]) |
| 3806 | ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor] |
| 3807 | cls.add_constructor([param('double', 'c')]) |
| 3808 | ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function] |
| 3809 | cls.add_method('SetConstant', |
| 3810 | 'void', |
| 3811 | [param('double', 'c')]) |
| 3812 | return |
| 3813 | |
| 3814 | def register_Ns3DeterministicVariable_methods(root_module, cls): |
| 3815 | ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor] |
| 3816 | cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')]) |
| 3817 | ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor] |
| 3818 | cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')]) |
| 3819 | return |
| 3820 | |
| 3821 | def register_Ns3EmpiricalVariable_methods(root_module, cls): |
| 3822 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor] |
| 3823 | cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')]) |
| 3824 | ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor] |
| 3825 | cls.add_constructor([]) |
| 3826 | ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function] |
| 3827 | cls.add_method('CDF', |
| 3828 | 'void', |
| 3829 | [param('double', 'v'), param('double', 'c')]) |
| 3830 | return |
| 3831 | |
| 3832 | def register_Ns3ErlangVariable_methods(root_module, cls): |
| 3833 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor] |
| 3834 | cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')]) |
| 3835 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor] |
| 3836 | cls.add_constructor([]) |
| 3837 | ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor] |
| 3838 | cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')]) |
| 3839 | ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function] |
| 3840 | cls.add_method('GetValue', |
| 3841 | 'double', |
| 3842 | [], |
| 3843 | is_const=True) |
| 3844 | ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function] |
| 3845 | cls.add_method('GetValue', |
| 3846 | 'double', |
| 3847 | [param('unsigned int', 'k'), param('double', 'lambda')], |
| 3848 | is_const=True) |
| 3849 | return |
| 3850 | |
| 3851 | def register_Ns3ExponentialVariable_methods(root_module, cls): |
| 3852 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor] |
| 3853 | cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')]) |
| 3854 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor] |
| 3855 | cls.add_constructor([]) |
| 3856 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor] |
| 3857 | cls.add_constructor([param('double', 'm')]) |
| 3858 | ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor] |
| 3859 | cls.add_constructor([param('double', 'm'), param('double', 'b')]) |
| 3860 | return |
| 3861 | |
| 3862 | def register_Ns3GammaVariable_methods(root_module, cls): |
| 3863 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor] |
| 3864 | cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')]) |
| 3865 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor] |
| 3866 | cls.add_constructor([]) |
| 3867 | ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor] |
| 3868 | cls.add_constructor([param('double', 'alpha'), param('double', 'beta')]) |
| 3869 | ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function] |
| 3870 | cls.add_method('GetValue', |
| 3871 | 'double', |
| 3872 | [], |
| 3873 | is_const=True) |
| 3874 | ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function] |
| 3875 | cls.add_method('GetValue', |
| 3876 | 'double', |
| 3877 | [param('double', 'alpha'), param('double', 'beta')], |
| 3878 | is_const=True) |
| 3879 | return |
| 3880 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3881 | def register_Ns3Header_methods(root_module, cls): |
| 3882 | cls.add_output_stream_operator() |
| 3883 | ## header.h (module 'network'): ns3::Header::Header() [constructor] |
| 3884 | cls.add_constructor([]) |
| 3885 | ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor] |
| 3886 | cls.add_constructor([param('ns3::Header const &', 'arg0')]) |
| 3887 | ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 3888 | cls.add_method('Deserialize', |
| 3889 | 'uint32_t', |
| 3890 | [param('ns3::Buffer::Iterator', 'start')], |
| 3891 | is_pure_virtual=True, is_virtual=True) |
| 3892 | ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function] |
| 3893 | cls.add_method('GetSerializedSize', |
| 3894 | 'uint32_t', |
| 3895 | [], |
| 3896 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3897 | ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function] |
| 3898 | cls.add_method('GetTypeId', |
| 3899 | 'ns3::TypeId', |
| 3900 | [], |
| 3901 | is_static=True) |
| 3902 | ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function] |
| 3903 | cls.add_method('Print', |
| 3904 | 'void', |
| 3905 | [param('std::ostream &', 'os')], |
| 3906 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3907 | ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 3908 | cls.add_method('Serialize', |
| 3909 | 'void', |
| 3910 | [param('ns3::Buffer::Iterator', 'start')], |
| 3911 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 3912 | return |
| 3913 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3914 | def register_Ns3IntEmpiricalVariable_methods(root_module, cls): |
| 3915 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor] |
| 3916 | cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')]) |
| 3917 | ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3918 | cls.add_constructor([]) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 3919 | return |
| 3920 | |
| 3921 | def register_Ns3LogNormalVariable_methods(root_module, cls): |
| 3922 | ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor] |
| 3923 | cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')]) |
| 3924 | ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor] |
| 3925 | cls.add_constructor([param('double', 'mu'), param('double', 'sigma')]) |
| 3926 | return |
| 3927 | |
| 3928 | def register_Ns3NormalVariable_methods(root_module, cls): |
| 3929 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor] |
| 3930 | cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')]) |
| 3931 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor] |
| 3932 | cls.add_constructor([]) |
| 3933 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor] |
| 3934 | cls.add_constructor([param('double', 'm'), param('double', 'v')]) |
| 3935 | ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor] |
| 3936 | cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 3937 | return |
| 3938 | |
| 3939 | def register_Ns3Object_methods(root_module, cls): |
| 3940 | ## object.h (module 'core'): ns3::Object::Object() [constructor] |
| 3941 | cls.add_constructor([]) |
| 3942 | ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function] |
| 3943 | cls.add_method('AggregateObject', |
| 3944 | 'void', |
| 3945 | [param('ns3::Ptr< ns3::Object >', 'other')]) |
| 3946 | ## object.h (module 'core'): void ns3::Object::Dispose() [member function] |
| 3947 | cls.add_method('Dispose', |
| 3948 | 'void', |
| 3949 | []) |
| 3950 | ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function] |
| 3951 | cls.add_method('GetAggregateIterator', |
| 3952 | 'ns3::Object::AggregateIterator', |
| 3953 | [], |
| 3954 | is_const=True) |
| 3955 | ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function] |
| 3956 | cls.add_method('GetInstanceTypeId', |
| 3957 | 'ns3::TypeId', |
| 3958 | [], |
| 3959 | is_const=True, is_virtual=True) |
| 3960 | ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function] |
| 3961 | cls.add_method('GetTypeId', |
| 3962 | 'ns3::TypeId', |
| 3963 | [], |
| 3964 | is_static=True) |
| 3965 | ## object.h (module 'core'): void ns3::Object::Start() [member function] |
| 3966 | cls.add_method('Start', |
| 3967 | 'void', |
| 3968 | []) |
| 3969 | ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor] |
| 3970 | cls.add_constructor([param('ns3::Object const &', 'o')], |
| 3971 | visibility='protected') |
| 3972 | ## object.h (module 'core'): void ns3::Object::DoDispose() [member function] |
| 3973 | cls.add_method('DoDispose', |
| 3974 | 'void', |
| 3975 | [], |
| 3976 | visibility='protected', is_virtual=True) |
| 3977 | ## object.h (module 'core'): void ns3::Object::DoStart() [member function] |
| 3978 | cls.add_method('DoStart', |
| 3979 | 'void', |
| 3980 | [], |
| 3981 | visibility='protected', is_virtual=True) |
| 3982 | ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function] |
| 3983 | cls.add_method('NotifyNewAggregate', |
| 3984 | 'void', |
| 3985 | [], |
| 3986 | visibility='protected', is_virtual=True) |
| 3987 | return |
| 3988 | |
| 3989 | def register_Ns3ObjectAggregateIterator_methods(root_module, cls): |
| 3990 | ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor] |
| 3991 | cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')]) |
| 3992 | ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor] |
| 3993 | cls.add_constructor([]) |
| 3994 | ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function] |
| 3995 | cls.add_method('HasNext', |
| 3996 | 'bool', |
| 3997 | [], |
| 3998 | is_const=True) |
| 3999 | ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function] |
| 4000 | cls.add_method('Next', |
| 4001 | 'ns3::Ptr< ns3::Object const >', |
| 4002 | []) |
| 4003 | return |
| 4004 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 4005 | def register_Ns3ParetoVariable_methods(root_module, cls): |
| 4006 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor] |
| 4007 | cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')]) |
| 4008 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor] |
| 4009 | cls.add_constructor([]) |
| 4010 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor] |
| 4011 | cls.add_constructor([param('double', 'm')]) |
| 4012 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor] |
| 4013 | cls.add_constructor([param('double', 'm'), param('double', 's')]) |
| 4014 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor] |
| 4015 | cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')]) |
| 4016 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor] |
| 4017 | cls.add_constructor([param('std::pair< double, double >', 'params')]) |
| 4018 | ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor] |
| 4019 | cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')]) |
| 4020 | return |
| 4021 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4022 | def register_Ns3PcapFileWrapper_methods(root_module, cls): |
| 4023 | ## pcap-file-wrapper.h (module 'network'): static ns3::TypeId ns3::PcapFileWrapper::GetTypeId() [member function] |
| 4024 | cls.add_method('GetTypeId', |
| 4025 | 'ns3::TypeId', |
| 4026 | [], |
| 4027 | is_static=True) |
| 4028 | ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper::PcapFileWrapper() [constructor] |
| 4029 | cls.add_constructor([]) |
| 4030 | ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Fail() const [member function] |
| 4031 | cls.add_method('Fail', |
| 4032 | 'bool', |
| 4033 | [], |
| 4034 | is_const=True) |
| 4035 | ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Eof() const [member function] |
| 4036 | cls.add_method('Eof', |
| 4037 | 'bool', |
| 4038 | [], |
| 4039 | is_const=True) |
| 4040 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Clear() [member function] |
| 4041 | cls.add_method('Clear', |
| 4042 | 'void', |
| 4043 | []) |
| 4044 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Open(std::string const & filename, std::_Ios_Openmode mode) [member function] |
| 4045 | cls.add_method('Open', |
| 4046 | 'void', |
| 4047 | [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')]) |
| 4048 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Close() [member function] |
| 4049 | cls.add_method('Close', |
| 4050 | 'void', |
| 4051 | []) |
| 4052 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Init(uint32_t dataLinkType, uint32_t snapLen=std::numeric_limits<unsigned int>::max(), int32_t tzCorrection=ns3::PcapFile::ZONE_DEFAULT) [member function] |
| 4053 | cls.add_method('Init', |
| 4054 | 'void', |
| 4055 | [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='std::numeric_limits<unsigned int>::max()'), param('int32_t', 'tzCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4056 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4057 | cls.add_method('Write', |
| 4058 | 'void', |
| 4059 | [param('ns3::Time', 't'), param('ns3::Ptr< ns3::Packet const >', 'p')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4060 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Header & header, ns3::Ptr<ns3::Packet const> p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4061 | cls.add_method('Write', |
| 4062 | 'void', |
| 4063 | [param('ns3::Time', 't'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')]) |
| 4064 | ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, uint8_t const * buffer, uint32_t length) [member function] |
| 4065 | cls.add_method('Write', |
| 4066 | 'void', |
| 4067 | [param('ns3::Time', 't'), param('uint8_t const *', 'buffer'), param('uint32_t', 'length')]) |
| 4068 | ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetMagic() [member function] |
| 4069 | cls.add_method('GetMagic', |
| 4070 | 'uint32_t', |
| 4071 | []) |
| 4072 | ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMajor() [member function] |
| 4073 | cls.add_method('GetVersionMajor', |
| 4074 | 'uint16_t', |
| 4075 | []) |
| 4076 | ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMinor() [member function] |
| 4077 | cls.add_method('GetVersionMinor', |
| 4078 | 'uint16_t', |
| 4079 | []) |
| 4080 | ## pcap-file-wrapper.h (module 'network'): int32_t ns3::PcapFileWrapper::GetTimeZoneOffset() [member function] |
| 4081 | cls.add_method('GetTimeZoneOffset', |
| 4082 | 'int32_t', |
| 4083 | []) |
| 4084 | ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSigFigs() [member function] |
| 4085 | cls.add_method('GetSigFigs', |
| 4086 | 'uint32_t', |
| 4087 | []) |
| 4088 | ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSnapLen() [member function] |
| 4089 | cls.add_method('GetSnapLen', |
| 4090 | 'uint32_t', |
| 4091 | []) |
| 4092 | ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetDataLinkType() [member function] |
| 4093 | cls.add_method('GetDataLinkType', |
| 4094 | 'uint32_t', |
| 4095 | []) |
| 4096 | return |
| 4097 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4098 | def register_Ns3Queue_methods(root_module, cls): |
| 4099 | ## queue.h (module 'network'): ns3::Queue::Queue(ns3::Queue const & arg0) [copy constructor] |
| 4100 | cls.add_constructor([param('ns3::Queue const &', 'arg0')]) |
| 4101 | ## queue.h (module 'network'): ns3::Queue::Queue() [constructor] |
| 4102 | cls.add_constructor([]) |
| 4103 | ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::Dequeue() [member function] |
| 4104 | cls.add_method('Dequeue', |
| 4105 | 'ns3::Ptr< ns3::Packet >', |
| 4106 | []) |
| 4107 | ## queue.h (module 'network'): void ns3::Queue::DequeueAll() [member function] |
| 4108 | cls.add_method('DequeueAll', |
| 4109 | 'void', |
| 4110 | []) |
| 4111 | ## queue.h (module 'network'): bool ns3::Queue::Enqueue(ns3::Ptr<ns3::Packet> p) [member function] |
| 4112 | cls.add_method('Enqueue', |
| 4113 | 'bool', |
| 4114 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 4115 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetNBytes() const [member function] |
| 4116 | cls.add_method('GetNBytes', |
| 4117 | 'uint32_t', |
| 4118 | [], |
| 4119 | is_const=True) |
| 4120 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetNPackets() const [member function] |
| 4121 | cls.add_method('GetNPackets', |
| 4122 | 'uint32_t', |
| 4123 | [], |
| 4124 | is_const=True) |
| 4125 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedBytes() const [member function] |
| 4126 | cls.add_method('GetTotalDroppedBytes', |
| 4127 | 'uint32_t', |
| 4128 | [], |
| 4129 | is_const=True) |
| 4130 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedPackets() const [member function] |
| 4131 | cls.add_method('GetTotalDroppedPackets', |
| 4132 | 'uint32_t', |
| 4133 | [], |
| 4134 | is_const=True) |
| 4135 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedBytes() const [member function] |
| 4136 | cls.add_method('GetTotalReceivedBytes', |
| 4137 | 'uint32_t', |
| 4138 | [], |
| 4139 | is_const=True) |
| 4140 | ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedPackets() const [member function] |
| 4141 | cls.add_method('GetTotalReceivedPackets', |
| 4142 | 'uint32_t', |
| 4143 | [], |
| 4144 | is_const=True) |
| 4145 | ## queue.h (module 'network'): static ns3::TypeId ns3::Queue::GetTypeId() [member function] |
| 4146 | cls.add_method('GetTypeId', |
| 4147 | 'ns3::TypeId', |
| 4148 | [], |
| 4149 | is_static=True) |
| 4150 | ## queue.h (module 'network'): bool ns3::Queue::IsEmpty() const [member function] |
| 4151 | cls.add_method('IsEmpty', |
| 4152 | 'bool', |
| 4153 | [], |
| 4154 | is_const=True) |
| 4155 | ## queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::Queue::Peek() const [member function] |
| 4156 | cls.add_method('Peek', |
| 4157 | 'ns3::Ptr< ns3::Packet const >', |
| 4158 | [], |
| 4159 | is_const=True) |
| 4160 | ## queue.h (module 'network'): void ns3::Queue::ResetStatistics() [member function] |
| 4161 | cls.add_method('ResetStatistics', |
| 4162 | 'void', |
| 4163 | []) |
| 4164 | ## queue.h (module 'network'): void ns3::Queue::Drop(ns3::Ptr<ns3::Packet> packet) [member function] |
| 4165 | cls.add_method('Drop', |
| 4166 | 'void', |
| 4167 | [param('ns3::Ptr< ns3::Packet >', 'packet')], |
| 4168 | visibility='protected') |
| 4169 | ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::DoDequeue() [member function] |
| 4170 | cls.add_method('DoDequeue', |
| 4171 | 'ns3::Ptr< ns3::Packet >', |
| 4172 | [], |
| 4173 | is_pure_virtual=True, visibility='private', is_virtual=True) |
| 4174 | ## queue.h (module 'network'): bool ns3::Queue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function] |
| 4175 | cls.add_method('DoEnqueue', |
| 4176 | 'bool', |
| 4177 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 4178 | is_pure_virtual=True, visibility='private', is_virtual=True) |
| 4179 | ## queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::Queue::DoPeek() const [member function] |
| 4180 | cls.add_method('DoPeek', |
| 4181 | 'ns3::Ptr< ns3::Packet const >', |
| 4182 | [], |
| 4183 | is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
| 4184 | return |
| 4185 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4186 | def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls): |
| 4187 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor] |
| 4188 | cls.add_constructor([]) |
| 4189 | ## 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] |
| 4190 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')]) |
| 4191 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function] |
| 4192 | cls.add_method('Cleanup', |
| 4193 | 'void', |
| 4194 | [], |
| 4195 | is_static=True) |
| 4196 | return |
| 4197 | |
| 4198 | def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls): |
| 4199 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor] |
| 4200 | cls.add_constructor([]) |
| 4201 | ## 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] |
| 4202 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')]) |
| 4203 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function] |
| 4204 | cls.add_method('Cleanup', |
| 4205 | 'void', |
| 4206 | [], |
| 4207 | is_static=True) |
| 4208 | return |
| 4209 | |
| 4210 | def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls): |
| 4211 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor] |
| 4212 | cls.add_constructor([]) |
| 4213 | ## 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] |
| 4214 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')]) |
| 4215 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function] |
| 4216 | cls.add_method('Cleanup', |
| 4217 | 'void', |
| 4218 | [], |
| 4219 | is_static=True) |
| 4220 | return |
| 4221 | |
| 4222 | def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls): |
| 4223 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor] |
| 4224 | cls.add_constructor([]) |
| 4225 | ## 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] |
| 4226 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')]) |
| 4227 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function] |
| 4228 | cls.add_method('Cleanup', |
| 4229 | 'void', |
| 4230 | [], |
| 4231 | is_static=True) |
| 4232 | return |
| 4233 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4234 | def register_Ns3SimpleRefCount__Ns3CcnbParserBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnbParserBlock__gt___methods(root_module, cls): |
| 4235 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> >::SimpleRefCount() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4236 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4237 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> > const & o) [copy constructor] |
| 4238 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter< ns3::CcnbParser::Block > > const &', 'o')]) |
| 4239 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnbParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnbParser::Block> >::Cleanup() [member function] |
| 4240 | cls.add_method('Cleanup', |
| 4241 | 'void', |
| 4242 | [], |
| 4243 | is_static=True) |
| 4244 | return |
| 4245 | |
| 4246 | def register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, cls): |
| 4247 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount() [constructor] |
| 4248 | cls.add_constructor([]) |
| 4249 | ## 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] |
| 4250 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFaceContainer > > const &', 'o')]) |
| 4251 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::Cleanup() [member function] |
| 4252 | cls.add_method('Cleanup', |
| 4253 | 'void', |
| 4254 | [], |
| 4255 | is_static=True) |
| 4256 | return |
| 4257 | |
| 4258 | def register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, cls): |
| 4259 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::SimpleRefCount() [constructor] |
| 4260 | cls.add_constructor([]) |
| 4261 | ## 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] |
| 4262 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFibEntry > > const &', 'o')]) |
| 4263 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::Cleanup() [member function] |
| 4264 | cls.add_method('Cleanup', |
| 4265 | 'void', |
| 4266 | [], |
| 4267 | is_static=True) |
| 4268 | return |
| 4269 | |
| 4270 | def register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, cls): |
| 4271 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount() [constructor] |
| 4272 | cls.add_constructor([]) |
| 4273 | ## 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] |
| 4274 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter< ns3::CcnxNameComponents > > const &', 'o')]) |
| 4275 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::Cleanup() [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4276 | cls.add_method('Cleanup', |
| 4277 | 'void', |
| 4278 | [], |
| 4279 | is_static=True) |
| 4280 | return |
| 4281 | |
| 4282 | def register_Ns3SimpleRefCount__Ns3CcnxRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxRoute__gt___methods(root_module, cls): |
| 4283 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::SimpleRefCount() [constructor] |
| 4284 | cls.add_constructor([]) |
| 4285 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> > const & o) [copy constructor] |
| 4286 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter< ns3::CcnxRoute > > const &', 'o')]) |
| 4287 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::Cleanup() [member function] |
| 4288 | cls.add_method('Cleanup', |
| 4289 | 'void', |
| 4290 | [], |
| 4291 | is_static=True) |
| 4292 | return |
| 4293 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4294 | def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls): |
| 4295 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor] |
| 4296 | cls.add_constructor([]) |
| 4297 | ## 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] |
| 4298 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')]) |
| 4299 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function] |
| 4300 | cls.add_method('Cleanup', |
| 4301 | 'void', |
| 4302 | [], |
| 4303 | is_static=True) |
| 4304 | return |
| 4305 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4306 | def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls): |
| 4307 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor] |
| 4308 | cls.add_constructor([]) |
| 4309 | ## 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] |
| 4310 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')]) |
| 4311 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function] |
| 4312 | cls.add_method('Cleanup', |
| 4313 | 'void', |
| 4314 | [], |
| 4315 | is_static=True) |
| 4316 | return |
| 4317 | |
| 4318 | def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls): |
| 4319 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor] |
| 4320 | cls.add_constructor([]) |
| 4321 | ## 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] |
| 4322 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')]) |
| 4323 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function] |
| 4324 | cls.add_method('Cleanup', |
| 4325 | 'void', |
| 4326 | [], |
| 4327 | is_static=True) |
| 4328 | return |
| 4329 | |
| 4330 | def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls): |
| 4331 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor] |
| 4332 | cls.add_constructor([]) |
| 4333 | ## 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] |
| 4334 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')]) |
| 4335 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function] |
| 4336 | cls.add_method('Cleanup', |
| 4337 | 'void', |
| 4338 | [], |
| 4339 | is_static=True) |
| 4340 | return |
| 4341 | |
| 4342 | def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls): |
| 4343 | ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor] |
| 4344 | cls.add_constructor([]) |
| 4345 | ## 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] |
| 4346 | cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')]) |
| 4347 | ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function] |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 4348 | cls.add_method('Cleanup', |
| 4349 | 'void', |
| 4350 | [], |
| 4351 | is_static=True) |
| 4352 | return |
| 4353 | |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4354 | def register_Ns3Socket_methods(root_module, cls): |
| 4355 | ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor] |
| 4356 | cls.add_constructor([param('ns3::Socket const &', 'arg0')]) |
| 4357 | ## socket.h (module 'network'): ns3::Socket::Socket() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4358 | cls.add_constructor([]) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4359 | ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function] |
| 4360 | cls.add_method('Bind', |
| 4361 | 'int', |
| 4362 | [param('ns3::Address const &', 'address')], |
| 4363 | is_pure_virtual=True, is_virtual=True) |
| 4364 | ## socket.h (module 'network'): int ns3::Socket::Bind() [member function] |
| 4365 | cls.add_method('Bind', |
| 4366 | 'int', |
| 4367 | [], |
| 4368 | is_pure_virtual=True, is_virtual=True) |
| 4369 | ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function] |
| 4370 | cls.add_method('BindToNetDevice', |
| 4371 | 'void', |
| 4372 | [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], |
| 4373 | is_virtual=True) |
| 4374 | ## socket.h (module 'network'): int ns3::Socket::Close() [member function] |
| 4375 | cls.add_method('Close', |
| 4376 | 'int', |
| 4377 | [], |
| 4378 | is_pure_virtual=True, is_virtual=True) |
| 4379 | ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function] |
| 4380 | cls.add_method('Connect', |
| 4381 | 'int', |
| 4382 | [param('ns3::Address const &', 'address')], |
| 4383 | is_pure_virtual=True, is_virtual=True) |
| 4384 | ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function] |
| 4385 | cls.add_method('CreateSocket', |
| 4386 | 'ns3::Ptr< ns3::Socket >', |
| 4387 | [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')], |
| 4388 | is_static=True) |
| 4389 | ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function] |
| 4390 | cls.add_method('GetAllowBroadcast', |
| 4391 | 'bool', |
| 4392 | [], |
| 4393 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4394 | ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function] |
| 4395 | cls.add_method('GetBoundNetDevice', |
| 4396 | 'ns3::Ptr< ns3::NetDevice >', |
| 4397 | []) |
| 4398 | ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function] |
| 4399 | cls.add_method('GetErrno', |
| 4400 | 'ns3::Socket::SocketErrno', |
| 4401 | [], |
| 4402 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4403 | ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function] |
| 4404 | cls.add_method('GetNode', |
| 4405 | 'ns3::Ptr< ns3::Node >', |
| 4406 | [], |
| 4407 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4408 | ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function] |
| 4409 | cls.add_method('GetRxAvailable', |
| 4410 | 'uint32_t', |
| 4411 | [], |
| 4412 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4413 | ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function] |
| 4414 | cls.add_method('GetSockName', |
| 4415 | 'int', |
| 4416 | [param('ns3::Address &', 'address')], |
| 4417 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4418 | ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function] |
| 4419 | cls.add_method('GetSocketType', |
| 4420 | 'ns3::Socket::SocketType', |
| 4421 | [], |
| 4422 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4423 | ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function] |
| 4424 | cls.add_method('GetTxAvailable', |
| 4425 | 'uint32_t', |
| 4426 | [], |
| 4427 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4428 | ## socket.h (module 'network'): int ns3::Socket::Listen() [member function] |
| 4429 | cls.add_method('Listen', |
| 4430 | 'int', |
| 4431 | [], |
| 4432 | is_pure_virtual=True, is_virtual=True) |
| 4433 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function] |
| 4434 | cls.add_method('Recv', |
| 4435 | 'ns3::Ptr< ns3::Packet >', |
| 4436 | [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], |
| 4437 | is_pure_virtual=True, is_virtual=True) |
| 4438 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function] |
| 4439 | cls.add_method('Recv', |
| 4440 | 'ns3::Ptr< ns3::Packet >', |
| 4441 | []) |
| 4442 | ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function] |
| 4443 | cls.add_method('Recv', |
| 4444 | 'int', |
| 4445 | [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')]) |
| 4446 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function] |
| 4447 | cls.add_method('RecvFrom', |
| 4448 | 'ns3::Ptr< ns3::Packet >', |
| 4449 | [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], |
| 4450 | is_pure_virtual=True, is_virtual=True) |
| 4451 | ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function] |
| 4452 | cls.add_method('RecvFrom', |
| 4453 | 'ns3::Ptr< ns3::Packet >', |
| 4454 | [param('ns3::Address &', 'fromAddress')]) |
| 4455 | ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function] |
| 4456 | cls.add_method('RecvFrom', |
| 4457 | 'int', |
| 4458 | [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')]) |
| 4459 | ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function] |
| 4460 | cls.add_method('Send', |
| 4461 | 'int', |
| 4462 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], |
| 4463 | is_pure_virtual=True, is_virtual=True) |
| 4464 | ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 4465 | cls.add_method('Send', |
| 4466 | 'int', |
| 4467 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 4468 | ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function] |
| 4469 | cls.add_method('Send', |
| 4470 | 'int', |
| 4471 | [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')]) |
| 4472 | ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function] |
| 4473 | cls.add_method('SendTo', |
| 4474 | 'int', |
| 4475 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], |
| 4476 | is_pure_virtual=True, is_virtual=True) |
| 4477 | ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function] |
| 4478 | cls.add_method('SendTo', |
| 4479 | 'int', |
| 4480 | [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')]) |
| 4481 | ## 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] |
| 4482 | cls.add_method('SetAcceptCallback', |
| 4483 | 'void', |
| 4484 | [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')]) |
| 4485 | ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function] |
| 4486 | cls.add_method('SetAllowBroadcast', |
| 4487 | 'bool', |
| 4488 | [param('bool', 'allowBroadcast')], |
| 4489 | is_pure_virtual=True, is_virtual=True) |
| 4490 | ## 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] |
| 4491 | cls.add_method('SetCloseCallbacks', |
| 4492 | 'void', |
| 4493 | [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')]) |
| 4494 | ## 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] |
| 4495 | cls.add_method('SetConnectCallback', |
| 4496 | 'void', |
| 4497 | [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')]) |
| 4498 | ## 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] |
| 4499 | cls.add_method('SetDataSentCallback', |
| 4500 | 'void', |
| 4501 | [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')]) |
| 4502 | ## 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] |
| 4503 | cls.add_method('SetRecvCallback', |
| 4504 | 'void', |
| 4505 | [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')]) |
| 4506 | ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function] |
| 4507 | cls.add_method('SetRecvPktInfo', |
| 4508 | 'void', |
| 4509 | [param('bool', 'flag')]) |
| 4510 | ## 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] |
| 4511 | cls.add_method('SetSendCallback', |
| 4512 | 'void', |
| 4513 | [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')]) |
| 4514 | ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function] |
| 4515 | cls.add_method('ShutdownRecv', |
| 4516 | 'int', |
| 4517 | [], |
| 4518 | is_pure_virtual=True, is_virtual=True) |
| 4519 | ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function] |
| 4520 | cls.add_method('ShutdownSend', |
| 4521 | 'int', |
| 4522 | [], |
| 4523 | is_pure_virtual=True, is_virtual=True) |
| 4524 | ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function] |
| 4525 | cls.add_method('DoDispose', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4526 | 'void', |
| 4527 | [], |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4528 | visibility='protected', is_virtual=True) |
| 4529 | ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function] |
| 4530 | cls.add_method('NotifyConnectionFailed', |
| 4531 | 'void', |
| 4532 | [], |
| 4533 | visibility='protected') |
| 4534 | ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function] |
| 4535 | cls.add_method('NotifyConnectionRequest', |
| 4536 | 'bool', |
| 4537 | [param('ns3::Address const &', 'from')], |
| 4538 | visibility='protected') |
| 4539 | ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function] |
| 4540 | cls.add_method('NotifyConnectionSucceeded', |
| 4541 | 'void', |
| 4542 | [], |
| 4543 | visibility='protected') |
| 4544 | ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function] |
| 4545 | cls.add_method('NotifyDataRecv', |
| 4546 | 'void', |
| 4547 | [], |
| 4548 | visibility='protected') |
| 4549 | ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function] |
| 4550 | cls.add_method('NotifyDataSent', |
| 4551 | 'void', |
| 4552 | [param('uint32_t', 'size')], |
| 4553 | visibility='protected') |
| 4554 | ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function] |
| 4555 | cls.add_method('NotifyErrorClose', |
| 4556 | 'void', |
| 4557 | [], |
| 4558 | visibility='protected') |
| 4559 | ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function] |
| 4560 | cls.add_method('NotifyNewConnectionCreated', |
| 4561 | 'void', |
| 4562 | [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')], |
| 4563 | visibility='protected') |
| 4564 | ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function] |
| 4565 | cls.add_method('NotifyNormalClose', |
| 4566 | 'void', |
| 4567 | [], |
| 4568 | visibility='protected') |
| 4569 | ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function] |
| 4570 | cls.add_method('NotifySend', |
| 4571 | 'void', |
| 4572 | [param('uint32_t', 'spaceAvailable')], |
| 4573 | visibility='protected') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4574 | return |
| 4575 | |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4576 | def register_Ns3SocketAddressTag_methods(root_module, cls): |
| 4577 | ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor] |
| 4578 | cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')]) |
| 4579 | ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4580 | cls.add_constructor([]) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4581 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function] |
| 4582 | cls.add_method('Deserialize', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4583 | 'void', |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4584 | [param('ns3::TagBuffer', 'i')], |
| 4585 | is_virtual=True) |
| 4586 | ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function] |
| 4587 | cls.add_method('GetAddress', |
| 4588 | 'ns3::Address', |
| 4589 | [], |
| 4590 | is_const=True) |
| 4591 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function] |
| 4592 | cls.add_method('GetInstanceTypeId', |
| 4593 | 'ns3::TypeId', |
| 4594 | [], |
| 4595 | is_const=True, is_virtual=True) |
| 4596 | ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function] |
| 4597 | cls.add_method('GetSerializedSize', |
| 4598 | 'uint32_t', |
| 4599 | [], |
| 4600 | is_const=True, is_virtual=True) |
| 4601 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function] |
| 4602 | cls.add_method('GetTypeId', |
| 4603 | 'ns3::TypeId', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4604 | [], |
| 4605 | is_static=True) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4606 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function] |
| 4607 | cls.add_method('Print', |
| 4608 | 'void', |
| 4609 | [param('std::ostream &', 'os')], |
| 4610 | is_const=True, is_virtual=True) |
| 4611 | ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function] |
| 4612 | cls.add_method('Serialize', |
| 4613 | 'void', |
| 4614 | [param('ns3::TagBuffer', 'i')], |
| 4615 | is_const=True, is_virtual=True) |
| 4616 | ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function] |
| 4617 | cls.add_method('SetAddress', |
| 4618 | 'void', |
| 4619 | [param('ns3::Address', 'addr')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4620 | return |
| 4621 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 4622 | def register_Ns3SocketFactory_methods(root_module, cls): |
| 4623 | ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory(ns3::SocketFactory const & arg0) [copy constructor] |
| 4624 | cls.add_constructor([param('ns3::SocketFactory const &', 'arg0')]) |
| 4625 | ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4626 | cls.add_constructor([]) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 4627 | ## socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::SocketFactory::CreateSocket() [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4628 | cls.add_method('CreateSocket', |
| 4629 | 'ns3::Ptr< ns3::Socket >', |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4630 | [], |
| 4631 | is_pure_virtual=True, is_virtual=True) |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 4632 | ## socket-factory.h (module 'network'): static ns3::TypeId ns3::SocketFactory::GetTypeId() [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4633 | cls.add_method('GetTypeId', |
| 4634 | 'ns3::TypeId', |
| 4635 | [], |
| 4636 | is_static=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4637 | return |
| 4638 | |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 4639 | def register_Ns3SocketIpTtlTag_methods(root_module, cls): |
| 4640 | ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor] |
| 4641 | cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')]) |
| 4642 | ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor] |
| 4643 | cls.add_constructor([]) |
| 4644 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function] |
| 4645 | cls.add_method('Deserialize', |
| 4646 | 'void', |
| 4647 | [param('ns3::TagBuffer', 'i')], |
| 4648 | is_virtual=True) |
| 4649 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function] |
| 4650 | cls.add_method('GetInstanceTypeId', |
| 4651 | 'ns3::TypeId', |
| 4652 | [], |
| 4653 | is_const=True, is_virtual=True) |
| 4654 | ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function] |
| 4655 | cls.add_method('GetSerializedSize', |
| 4656 | 'uint32_t', |
| 4657 | [], |
| 4658 | is_const=True, is_virtual=True) |
| 4659 | ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function] |
| 4660 | cls.add_method('GetTtl', |
| 4661 | 'uint8_t', |
| 4662 | [], |
| 4663 | is_const=True) |
| 4664 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function] |
| 4665 | cls.add_method('GetTypeId', |
| 4666 | 'ns3::TypeId', |
| 4667 | [], |
| 4668 | is_static=True) |
| 4669 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function] |
| 4670 | cls.add_method('Print', |
| 4671 | 'void', |
| 4672 | [param('std::ostream &', 'os')], |
| 4673 | is_const=True, is_virtual=True) |
| 4674 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function] |
| 4675 | cls.add_method('Serialize', |
| 4676 | 'void', |
| 4677 | [param('ns3::TagBuffer', 'i')], |
| 4678 | is_const=True, is_virtual=True) |
| 4679 | ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function] |
| 4680 | cls.add_method('SetTtl', |
| 4681 | 'void', |
| 4682 | [param('uint8_t', 'ttl')]) |
| 4683 | return |
| 4684 | |
| 4685 | def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls): |
| 4686 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor] |
| 4687 | cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')]) |
| 4688 | ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor] |
| 4689 | cls.add_constructor([]) |
| 4690 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function] |
| 4691 | cls.add_method('Deserialize', |
| 4692 | 'void', |
| 4693 | [param('ns3::TagBuffer', 'i')], |
| 4694 | is_virtual=True) |
| 4695 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function] |
| 4696 | cls.add_method('Disable', |
| 4697 | 'void', |
| 4698 | []) |
| 4699 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function] |
| 4700 | cls.add_method('Enable', |
| 4701 | 'void', |
| 4702 | []) |
| 4703 | ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function] |
| 4704 | cls.add_method('GetInstanceTypeId', |
| 4705 | 'ns3::TypeId', |
| 4706 | [], |
| 4707 | is_const=True, is_virtual=True) |
| 4708 | ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function] |
| 4709 | cls.add_method('GetSerializedSize', |
| 4710 | 'uint32_t', |
| 4711 | [], |
| 4712 | is_const=True, is_virtual=True) |
| 4713 | ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function] |
| 4714 | cls.add_method('GetTypeId', |
| 4715 | 'ns3::TypeId', |
| 4716 | [], |
| 4717 | is_static=True) |
| 4718 | ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function] |
| 4719 | cls.add_method('IsEnabled', |
| 4720 | 'bool', |
| 4721 | [], |
| 4722 | is_const=True) |
| 4723 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function] |
| 4724 | cls.add_method('Print', |
| 4725 | 'void', |
| 4726 | [param('std::ostream &', 'os')], |
| 4727 | is_const=True, is_virtual=True) |
| 4728 | ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function] |
| 4729 | cls.add_method('Serialize', |
| 4730 | 'void', |
| 4731 | [param('ns3::TagBuffer', 'i')], |
| 4732 | is_const=True, is_virtual=True) |
| 4733 | return |
| 4734 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4735 | def register_Ns3Time_methods(root_module, cls): |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4736 | cls.add_binary_comparison_operator('<=') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4737 | cls.add_binary_comparison_operator('!=') |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 4738 | cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right')) |
| 4739 | cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right')) |
| 4740 | cls.add_output_stream_operator() |
| 4741 | cls.add_binary_comparison_operator('==') |
| 4742 | cls.add_binary_comparison_operator('>=') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4743 | cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
| 4744 | cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
| 4745 | cls.add_binary_comparison_operator('<') |
| 4746 | cls.add_binary_comparison_operator('>') |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 4747 | ## nstime.h (module 'core'): ns3::Time::Time() [constructor] |
| 4748 | cls.add_constructor([]) |
| 4749 | ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor] |
| 4750 | cls.add_constructor([param('ns3::Time const &', 'o')]) |
| 4751 | ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor] |
| 4752 | cls.add_constructor([param('double', 'v')]) |
| 4753 | ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor] |
| 4754 | cls.add_constructor([param('int', 'v')]) |
| 4755 | ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor] |
| 4756 | cls.add_constructor([param('long int', 'v')]) |
| 4757 | ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor] |
| 4758 | cls.add_constructor([param('long long int', 'v')]) |
| 4759 | ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor] |
| 4760 | cls.add_constructor([param('unsigned int', 'v')]) |
| 4761 | ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor] |
| 4762 | cls.add_constructor([param('long unsigned int', 'v')]) |
| 4763 | ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor] |
| 4764 | cls.add_constructor([param('long long unsigned int', 'v')]) |
| 4765 | ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor] |
| 4766 | cls.add_constructor([param('std::string const &', 's')]) |
| 4767 | ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor] |
| 4768 | cls.add_constructor([param('ns3::int64x64_t const &', 'value')]) |
| 4769 | ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function] |
| 4770 | cls.add_method('Compare', |
| 4771 | 'int', |
| 4772 | [param('ns3::Time const &', 'o')], |
| 4773 | is_const=True) |
| 4774 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function] |
| 4775 | cls.add_method('From', |
| 4776 | 'ns3::Time', |
| 4777 | [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], |
| 4778 | is_static=True) |
| 4779 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function] |
| 4780 | cls.add_method('From', |
| 4781 | 'ns3::Time', |
| 4782 | [param('ns3::int64x64_t const &', 'value')], |
| 4783 | is_static=True) |
| 4784 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function] |
| 4785 | cls.add_method('FromDouble', |
| 4786 | 'ns3::Time', |
| 4787 | [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
| 4788 | is_static=True) |
| 4789 | ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function] |
| 4790 | cls.add_method('FromInteger', |
| 4791 | 'ns3::Time', |
| 4792 | [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
| 4793 | is_static=True) |
| 4794 | ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function] |
| 4795 | cls.add_method('GetDouble', |
| 4796 | 'double', |
| 4797 | [], |
| 4798 | is_const=True) |
| 4799 | ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function] |
| 4800 | cls.add_method('GetFemtoSeconds', |
| 4801 | 'int64_t', |
| 4802 | [], |
| 4803 | is_const=True) |
| 4804 | ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function] |
| 4805 | cls.add_method('GetInteger', |
| 4806 | 'int64_t', |
| 4807 | [], |
| 4808 | is_const=True) |
| 4809 | ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function] |
| 4810 | cls.add_method('GetMicroSeconds', |
| 4811 | 'int64_t', |
| 4812 | [], |
| 4813 | is_const=True) |
| 4814 | ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function] |
| 4815 | cls.add_method('GetMilliSeconds', |
| 4816 | 'int64_t', |
| 4817 | [], |
| 4818 | is_const=True) |
| 4819 | ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function] |
| 4820 | cls.add_method('GetNanoSeconds', |
| 4821 | 'int64_t', |
| 4822 | [], |
| 4823 | is_const=True) |
| 4824 | ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function] |
| 4825 | cls.add_method('GetPicoSeconds', |
| 4826 | 'int64_t', |
| 4827 | [], |
| 4828 | is_const=True) |
| 4829 | ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function] |
| 4830 | cls.add_method('GetResolution', |
| 4831 | 'ns3::Time::Unit', |
| 4832 | [], |
| 4833 | is_static=True) |
| 4834 | ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function] |
| 4835 | cls.add_method('GetSeconds', |
| 4836 | 'double', |
| 4837 | [], |
| 4838 | is_const=True) |
| 4839 | ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function] |
| 4840 | cls.add_method('GetTimeStep', |
| 4841 | 'int64_t', |
| 4842 | [], |
| 4843 | is_const=True) |
| 4844 | ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function] |
| 4845 | cls.add_method('IsNegative', |
| 4846 | 'bool', |
| 4847 | [], |
| 4848 | is_const=True) |
| 4849 | ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function] |
| 4850 | cls.add_method('IsPositive', |
| 4851 | 'bool', |
| 4852 | [], |
| 4853 | is_const=True) |
| 4854 | ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function] |
| 4855 | cls.add_method('IsStrictlyNegative', |
| 4856 | 'bool', |
| 4857 | [], |
| 4858 | is_const=True) |
| 4859 | ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function] |
| 4860 | cls.add_method('IsStrictlyPositive', |
| 4861 | 'bool', |
| 4862 | [], |
| 4863 | is_const=True) |
| 4864 | ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function] |
| 4865 | cls.add_method('IsZero', |
| 4866 | 'bool', |
| 4867 | [], |
| 4868 | is_const=True) |
| 4869 | ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function] |
| 4870 | cls.add_method('SetResolution', |
| 4871 | 'void', |
| 4872 | [param('ns3::Time::Unit', 'resolution')], |
| 4873 | is_static=True) |
| 4874 | ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function] |
| 4875 | cls.add_method('To', |
| 4876 | 'ns3::int64x64_t', |
| 4877 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4878 | is_const=True) |
| 4879 | ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function] |
| 4880 | cls.add_method('ToDouble', |
| 4881 | 'double', |
| 4882 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4883 | is_const=True) |
| 4884 | ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function] |
| 4885 | cls.add_method('ToInteger', |
| 4886 | 'int64_t', |
| 4887 | [param('ns3::Time::Unit', 'timeUnit')], |
| 4888 | is_const=True) |
| 4889 | return |
| 4890 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 4891 | def register_Ns3TopologyReader_methods(root_module, cls): |
| 4892 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor] |
| 4893 | cls.add_constructor([]) |
| 4894 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function] |
| 4895 | cls.add_method('AddLink', |
| 4896 | 'void', |
| 4897 | [param('ns3::TopologyReader::Link', 'link')]) |
| 4898 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function] |
| 4899 | cls.add_method('GetFileName', |
| 4900 | 'std::string', |
| 4901 | [], |
| 4902 | is_const=True) |
| 4903 | ## topology-reader.h (module 'topology-read'): static ns3::TypeId ns3::TopologyReader::GetTypeId() [member function] |
| 4904 | cls.add_method('GetTypeId', |
| 4905 | 'ns3::TypeId', |
| 4906 | [], |
| 4907 | is_static=True) |
| 4908 | ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function] |
| 4909 | cls.add_method('LinksBegin', |
| 4910 | 'std::_List_const_iterator< ns3::TopologyReader::Link >', |
| 4911 | [], |
| 4912 | is_const=True) |
| 4913 | ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function] |
| 4914 | cls.add_method('LinksEmpty', |
| 4915 | 'bool', |
| 4916 | [], |
| 4917 | is_const=True) |
| 4918 | ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function] |
| 4919 | cls.add_method('LinksEnd', |
| 4920 | 'std::_List_const_iterator< ns3::TopologyReader::Link >', |
| 4921 | [], |
| 4922 | is_const=True) |
| 4923 | ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function] |
| 4924 | cls.add_method('LinksSize', |
| 4925 | 'int', |
| 4926 | [], |
| 4927 | is_const=True) |
| 4928 | ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function] |
| 4929 | cls.add_method('Read', |
| 4930 | 'ns3::NodeContainer', |
| 4931 | [], |
| 4932 | is_pure_virtual=True, is_virtual=True) |
| 4933 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const fileName) [member function] |
| 4934 | cls.add_method('SetFileName', |
| 4935 | 'void', |
| 4936 | [param('std::string const', 'fileName')]) |
| 4937 | return |
| 4938 | |
| 4939 | def register_Ns3TopologyReaderLink_methods(root_module, cls): |
| 4940 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor] |
| 4941 | cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')]) |
| 4942 | ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::Ptr<ns3::Node> fromPtr, std::string fromName, ns3::Ptr<ns3::Node> toPtr, std::string toName) [constructor] |
| 4943 | cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'fromPtr'), param('std::string', 'fromName'), param('ns3::Ptr< ns3::Node >', 'toPtr'), param('std::string', 'toName')]) |
| 4944 | ## 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] |
| 4945 | cls.add_method('AttributesBegin', |
| 4946 | '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 > > > >', |
| 4947 | []) |
| 4948 | ## 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] |
| 4949 | cls.add_method('AttributesEnd', |
| 4950 | '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 > > > >', |
| 4951 | []) |
| 4952 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string name) const [member function] |
| 4953 | cls.add_method('GetAttribute', |
| 4954 | 'std::string', |
| 4955 | [param('std::string', 'name')], |
| 4956 | is_const=True) |
| 4957 | ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string name, std::string & value) const [member function] |
| 4958 | cls.add_method('GetAttributeFailSafe', |
| 4959 | 'bool', |
| 4960 | [param('std::string', 'name'), param('std::string &', 'value')], |
| 4961 | is_const=True) |
| 4962 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function] |
| 4963 | cls.add_method('GetFromNode', |
| 4964 | 'ns3::Ptr< ns3::Node >', |
| 4965 | [], |
| 4966 | is_const=True) |
| 4967 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function] |
| 4968 | cls.add_method('GetFromNodeName', |
| 4969 | 'std::string', |
| 4970 | [], |
| 4971 | is_const=True) |
| 4972 | ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function] |
| 4973 | cls.add_method('GetToNode', |
| 4974 | 'ns3::Ptr< ns3::Node >', |
| 4975 | [], |
| 4976 | is_const=True) |
| 4977 | ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function] |
| 4978 | cls.add_method('GetToNodeName', |
| 4979 | 'std::string', |
| 4980 | [], |
| 4981 | is_const=True) |
| 4982 | ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string name, std::string & value) [member function] |
| 4983 | cls.add_method('SetAttribute', |
| 4984 | 'void', |
| 4985 | [param('std::string', 'name'), param('std::string &', 'value')]) |
| 4986 | return |
| 4987 | |
| 4988 | def register_Ns3TraceSourceAccessor_methods(root_module, cls): |
| 4989 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor] |
| 4990 | cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')]) |
| 4991 | ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor] |
| 4992 | cls.add_constructor([]) |
| 4993 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
| 4994 | cls.add_method('Connect', |
| 4995 | 'bool', |
| 4996 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
| 4997 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 4998 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
| 4999 | cls.add_method('ConnectWithoutContext', |
| 5000 | 'bool', |
| 5001 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
| 5002 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5003 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
| 5004 | cls.add_method('Disconnect', |
| 5005 | 'bool', |
| 5006 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
| 5007 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5008 | ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
| 5009 | cls.add_method('DisconnectWithoutContext', |
| 5010 | 'bool', |
| 5011 | [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
| 5012 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5013 | return |
| 5014 | |
| 5015 | def register_Ns3Trailer_methods(root_module, cls): |
| 5016 | cls.add_output_stream_operator() |
| 5017 | ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor] |
| 5018 | cls.add_constructor([]) |
| 5019 | ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor] |
| 5020 | cls.add_constructor([param('ns3::Trailer const &', 'arg0')]) |
| 5021 | ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function] |
| 5022 | cls.add_method('Deserialize', |
| 5023 | 'uint32_t', |
| 5024 | [param('ns3::Buffer::Iterator', 'end')], |
| 5025 | is_pure_virtual=True, is_virtual=True) |
| 5026 | ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function] |
| 5027 | cls.add_method('GetSerializedSize', |
| 5028 | 'uint32_t', |
| 5029 | [], |
| 5030 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5031 | ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function] |
| 5032 | cls.add_method('GetTypeId', |
| 5033 | 'ns3::TypeId', |
| 5034 | [], |
| 5035 | is_static=True) |
| 5036 | ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function] |
| 5037 | cls.add_method('Print', |
| 5038 | 'void', |
| 5039 | [param('std::ostream &', 'os')], |
| 5040 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5041 | ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5042 | cls.add_method('Serialize', |
| 5043 | 'void', |
| 5044 | [param('ns3::Buffer::Iterator', 'start')], |
| 5045 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5046 | return |
| 5047 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 5048 | def register_Ns3UdpSocketFactory_methods(root_module, cls): |
| 5049 | ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory::UdpSocketFactory() [constructor] |
| 5050 | cls.add_constructor([]) |
| 5051 | ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory::UdpSocketFactory(ns3::UdpSocketFactory const & arg0) [copy constructor] |
| 5052 | cls.add_constructor([param('ns3::UdpSocketFactory const &', 'arg0')]) |
| 5053 | ## udp-socket-factory.h (module 'internet'): static ns3::TypeId ns3::UdpSocketFactory::GetTypeId() [member function] |
| 5054 | cls.add_method('GetTypeId', |
| 5055 | 'ns3::TypeId', |
| 5056 | [], |
| 5057 | is_static=True) |
| 5058 | return |
| 5059 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5060 | def register_Ns3AnnotatedTopologyReader_methods(root_module, cls): |
| 5061 | ## annotated-topology-reader.h (module 'NDNabstraction'): static ns3::TypeId ns3::AnnotatedTopologyReader::GetTypeId() [member function] |
| 5062 | cls.add_method('GetTypeId', |
| 5063 | 'ns3::TypeId', |
| 5064 | [], |
| 5065 | is_static=True) |
| 5066 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader() [constructor] |
| 5067 | cls.add_constructor([]) |
| 5068 | ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function] |
| 5069 | cls.add_method('Read', |
| 5070 | 'ns3::NodeContainer', |
| 5071 | [], |
| 5072 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5073 | ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplySettings(ns3::NetDeviceContainer * ndc, ns3::NodeContainer * nc) [member function] |
| 5074 | cls.add_method('ApplySettings', |
| 5075 | 'void', |
| 5076 | [param('ns3::NetDeviceContainer *', 'ndc'), param('ns3::NodeContainer *', 'nc')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5077 | return |
| 5078 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 5079 | def register_Ns3Application_methods(root_module, cls): |
| 5080 | ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor] |
| 5081 | cls.add_constructor([param('ns3::Application const &', 'arg0')]) |
| 5082 | ## application.h (module 'network'): ns3::Application::Application() [constructor] |
| 5083 | cls.add_constructor([]) |
| 5084 | ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function] |
| 5085 | cls.add_method('GetNode', |
| 5086 | 'ns3::Ptr< ns3::Node >', |
| 5087 | [], |
| 5088 | is_const=True) |
| 5089 | ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function] |
| 5090 | cls.add_method('GetTypeId', |
| 5091 | 'ns3::TypeId', |
| 5092 | [], |
| 5093 | is_static=True) |
| 5094 | ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 5095 | cls.add_method('SetNode', |
| 5096 | 'void', |
| 5097 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 5098 | ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function] |
| 5099 | cls.add_method('SetStartTime', |
| 5100 | 'void', |
| 5101 | [param('ns3::Time', 'start')]) |
| 5102 | ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function] |
| 5103 | cls.add_method('SetStopTime', |
| 5104 | 'void', |
| 5105 | [param('ns3::Time', 'stop')]) |
| 5106 | ## application.h (module 'network'): void ns3::Application::DoDispose() [member function] |
| 5107 | cls.add_method('DoDispose', |
| 5108 | 'void', |
| 5109 | [], |
| 5110 | visibility='protected', is_virtual=True) |
| 5111 | ## application.h (module 'network'): void ns3::Application::DoStart() [member function] |
| 5112 | cls.add_method('DoStart', |
| 5113 | 'void', |
| 5114 | [], |
| 5115 | visibility='protected', is_virtual=True) |
| 5116 | ## application.h (module 'network'): void ns3::Application::StartApplication() [member function] |
| 5117 | cls.add_method('StartApplication', |
| 5118 | 'void', |
| 5119 | [], |
| 5120 | visibility='private', is_virtual=True) |
| 5121 | ## application.h (module 'network'): void ns3::Application::StopApplication() [member function] |
| 5122 | cls.add_method('StopApplication', |
| 5123 | 'void', |
| 5124 | [], |
| 5125 | visibility='private', is_virtual=True) |
| 5126 | return |
| 5127 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 5128 | def register_Ns3AttributeAccessor_methods(root_module, cls): |
| 5129 | ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor] |
| 5130 | cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')]) |
| 5131 | ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor] |
| 5132 | cls.add_constructor([]) |
| 5133 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function] |
| 5134 | cls.add_method('Get', |
| 5135 | 'bool', |
| 5136 | [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], |
| 5137 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5138 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function] |
| 5139 | cls.add_method('HasGetter', |
| 5140 | 'bool', |
| 5141 | [], |
| 5142 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5143 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function] |
| 5144 | cls.add_method('HasSetter', |
| 5145 | 'bool', |
| 5146 | [], |
| 5147 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5148 | ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function] |
| 5149 | cls.add_method('Set', |
| 5150 | 'bool', |
| 5151 | [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], |
| 5152 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5153 | return |
| 5154 | |
| 5155 | def register_Ns3AttributeChecker_methods(root_module, cls): |
| 5156 | ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor] |
| 5157 | cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')]) |
| 5158 | ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor] |
| 5159 | cls.add_constructor([]) |
| 5160 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function] |
| 5161 | cls.add_method('Check', |
| 5162 | 'bool', |
| 5163 | [param('ns3::AttributeValue const &', 'value')], |
| 5164 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5165 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function] |
| 5166 | cls.add_method('Copy', |
| 5167 | 'bool', |
| 5168 | [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], |
| 5169 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5170 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function] |
| 5171 | cls.add_method('Create', |
| 5172 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5173 | [], |
| 5174 | is_pure_virtual=True, is_const=True, is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5175 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function] |
| 5176 | cls.add_method('CreateValidValue', |
| 5177 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5178 | [param('ns3::AttributeValue const &', 'value')], |
| 5179 | is_const=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 5180 | ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function] |
| 5181 | cls.add_method('GetUnderlyingTypeInformation', |
| 5182 | 'std::string', |
| 5183 | [], |
| 5184 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5185 | ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function] |
| 5186 | cls.add_method('GetValueTypeName', |
| 5187 | 'std::string', |
| 5188 | [], |
| 5189 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5190 | ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function] |
| 5191 | cls.add_method('HasUnderlyingTypeInformation', |
| 5192 | 'bool', |
| 5193 | [], |
| 5194 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5195 | return |
| 5196 | |
| 5197 | def register_Ns3AttributeValue_methods(root_module, cls): |
| 5198 | ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor] |
| 5199 | cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')]) |
| 5200 | ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor] |
| 5201 | cls.add_constructor([]) |
| 5202 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function] |
| 5203 | cls.add_method('Copy', |
| 5204 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5205 | [], |
| 5206 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5207 | ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5208 | cls.add_method('DeserializeFromString', |
| 5209 | 'bool', |
| 5210 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5211 | is_pure_virtual=True, is_virtual=True) |
| 5212 | ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5213 | cls.add_method('SerializeToString', |
| 5214 | 'std::string', |
| 5215 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5216 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5217 | return |
| 5218 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5219 | def register_Ns3BooleanChecker_methods(root_module, cls): |
| 5220 | ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor] |
| 5221 | cls.add_constructor([]) |
| 5222 | ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor] |
| 5223 | cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')]) |
| 5224 | return |
| 5225 | |
| 5226 | def register_Ns3BooleanValue_methods(root_module, cls): |
| 5227 | cls.add_output_stream_operator() |
| 5228 | ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor] |
| 5229 | cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')]) |
| 5230 | ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor] |
| 5231 | cls.add_constructor([]) |
| 5232 | ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor] |
| 5233 | cls.add_constructor([param('bool', 'value')]) |
| 5234 | ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function] |
| 5235 | cls.add_method('Copy', |
| 5236 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5237 | [], |
| 5238 | is_const=True, is_virtual=True) |
| 5239 | ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5240 | cls.add_method('DeserializeFromString', |
| 5241 | 'bool', |
| 5242 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5243 | is_virtual=True) |
| 5244 | ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function] |
| 5245 | cls.add_method('Get', |
| 5246 | 'bool', |
| 5247 | [], |
| 5248 | is_const=True) |
| 5249 | ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5250 | cls.add_method('SerializeToString', |
| 5251 | 'std::string', |
| 5252 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5253 | is_const=True, is_virtual=True) |
| 5254 | ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function] |
| 5255 | cls.add_method('Set', |
| 5256 | 'void', |
| 5257 | [param('bool', 'value')]) |
| 5258 | return |
| 5259 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 5260 | def register_Ns3CallbackChecker_methods(root_module, cls): |
| 5261 | ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor] |
| 5262 | cls.add_constructor([]) |
| 5263 | ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor] |
| 5264 | cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')]) |
| 5265 | return |
| 5266 | |
| 5267 | def register_Ns3CallbackImplBase_methods(root_module, cls): |
| 5268 | ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor] |
| 5269 | cls.add_constructor([]) |
| 5270 | ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor] |
| 5271 | cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')]) |
| 5272 | ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function] |
| 5273 | cls.add_method('IsEqual', |
| 5274 | 'bool', |
| 5275 | [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], |
| 5276 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5277 | return |
| 5278 | |
| 5279 | def register_Ns3CallbackValue_methods(root_module, cls): |
| 5280 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor] |
| 5281 | cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')]) |
| 5282 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor] |
| 5283 | cls.add_constructor([]) |
| 5284 | ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor] |
| 5285 | cls.add_constructor([param('ns3::CallbackBase const &', 'base')]) |
| 5286 | ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function] |
| 5287 | cls.add_method('Copy', |
| 5288 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5289 | [], |
| 5290 | is_const=True, is_virtual=True) |
| 5291 | ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5292 | cls.add_method('DeserializeFromString', |
| 5293 | 'bool', |
| 5294 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5295 | is_virtual=True) |
| 5296 | ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 5297 | cls.add_method('SerializeToString', |
| 5298 | 'std::string', |
| 5299 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5300 | is_const=True, is_virtual=True) |
| 5301 | ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function] |
| 5302 | cls.add_method('Set', |
| 5303 | 'void', |
| 5304 | [param('ns3::CallbackBase', 'base')]) |
| 5305 | return |
| 5306 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5307 | def register_Ns3Ccnx_methods(root_module, cls): |
| 5308 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx() [constructor] |
| 5309 | cls.add_constructor([]) |
| 5310 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor] |
| 5311 | cls.add_constructor([param('ns3::Ccnx const &', 'arg0')]) |
| 5312 | ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 5313 | cls.add_method('AddFace', |
| 5314 | 'uint32_t', |
| 5315 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')], |
| 5316 | is_pure_virtual=True, is_virtual=True) |
| 5317 | ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function] |
| 5318 | cls.add_method('GetFace', |
| 5319 | 'ns3::Ptr< ns3::CcnxFace >', |
| 5320 | [param('uint32_t', 'face')], |
| 5321 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5322 | ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function] |
| 5323 | cls.add_method('GetForwardingStrategy', |
| 5324 | 'ns3::Ptr< ns3::CcnxForwardingStrategy >', |
| 5325 | [], |
| 5326 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5327 | ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::GetNFaces() const [member function] |
| 5328 | cls.add_method('GetNFaces', |
| 5329 | 'uint32_t', |
| 5330 | [], |
| 5331 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5332 | ## ccnx.h (module 'NDNabstraction'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function] |
| 5333 | cls.add_method('GetTypeId', |
| 5334 | 'ns3::TypeId', |
| 5335 | [], |
| 5336 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5337 | ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::Receive(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet const> const & p) [member function] |
| 5338 | cls.add_method('Receive', |
| 5339 | 'void', |
| 5340 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet const > const &', 'p')], |
| 5341 | is_pure_virtual=True, is_virtual=True) |
| 5342 | ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::Send(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet> const & packet) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5343 | cls.add_method('Send', |
| 5344 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5345 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet > const &', 'packet')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5346 | is_pure_virtual=True, is_virtual=True) |
| 5347 | ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function] |
| 5348 | cls.add_method('SetForwardingStrategy', |
| 5349 | 'void', |
| 5350 | [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')], |
| 5351 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5352 | ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::m_contentStore [variable] |
| 5353 | cls.add_instance_attribute('m_contentStore', 'ns3::Ptr< ns3::CcnxContentStore >', is_const=False) |
| 5354 | return |
| 5355 | |
| 5356 | def register_Ns3CcnxConsumer_methods(root_module, cls): |
| 5357 | ## ccnx-consumer.h (module 'NDNabstraction'): ns3::CcnxConsumer::CcnxConsumer(ns3::CcnxConsumer const & arg0) [copy constructor] |
| 5358 | cls.add_constructor([param('ns3::CcnxConsumer const &', 'arg0')]) |
| 5359 | ## ccnx-consumer.h (module 'NDNabstraction'): ns3::CcnxConsumer::CcnxConsumer() [constructor] |
| 5360 | cls.add_constructor([]) |
| 5361 | ## ccnx-consumer.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxConsumer::GetTypeId() [member function] |
| 5362 | cls.add_method('GetTypeId', |
| 5363 | 'ns3::TypeId', |
| 5364 | [], |
| 5365 | is_static=True) |
| 5366 | ## ccnx-consumer.h (module 'NDNabstraction'): void ns3::CcnxConsumer::HandlePacket(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet const> const & packet) [member function] |
| 5367 | cls.add_method('HandlePacket', |
| 5368 | 'void', |
| 5369 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet const > const &', 'packet')]) |
| 5370 | ## ccnx-consumer.h (module 'NDNabstraction'): void ns3::CcnxConsumer::DoDispose() [member function] |
| 5371 | cls.add_method('DoDispose', |
| 5372 | 'void', |
| 5373 | [], |
| 5374 | visibility='protected', is_virtual=True) |
| 5375 | ## ccnx-consumer.h (module 'NDNabstraction'): void ns3::CcnxConsumer::StartApplication() [member function] |
| 5376 | cls.add_method('StartApplication', |
| 5377 | 'void', |
| 5378 | [], |
| 5379 | visibility='private', is_virtual=True) |
| 5380 | ## ccnx-consumer.h (module 'NDNabstraction'): void ns3::CcnxConsumer::StopApplication() [member function] |
| 5381 | cls.add_method('StopApplication', |
| 5382 | 'void', |
| 5383 | [], |
| 5384 | visibility='private', is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5385 | return |
| 5386 | |
| 5387 | def register_Ns3CcnxContentObjectHeader_methods(root_module, cls): |
| 5388 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor] |
| 5389 | cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')]) |
| 5390 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor] |
| 5391 | cls.add_constructor([]) |
| 5392 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5393 | cls.add_method('Deserialize', |
| 5394 | 'uint32_t', |
| 5395 | [param('ns3::Buffer::Iterator', 'start')], |
| 5396 | is_virtual=True) |
| 5397 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function] |
| 5398 | cls.add_method('GetInstanceTypeId', |
| 5399 | 'ns3::TypeId', |
| 5400 | [], |
| 5401 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5402 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxContentObjectHeader::GetName() const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5403 | cls.add_method('GetName', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5404 | 'ns3::CcnxNameComponents const &', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5405 | [], |
| 5406 | is_const=True) |
| 5407 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function] |
| 5408 | cls.add_method('GetSerializedSize', |
| 5409 | 'uint32_t', |
| 5410 | [], |
| 5411 | is_const=True, is_virtual=True) |
| 5412 | ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function] |
| 5413 | cls.add_method('GetTypeId', |
| 5414 | 'ns3::TypeId', |
| 5415 | [], |
| 5416 | is_static=True) |
| 5417 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function] |
| 5418 | cls.add_method('Print', |
| 5419 | 'void', |
| 5420 | [param('std::ostream &', 'os')], |
| 5421 | is_const=True, is_virtual=True) |
| 5422 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5423 | cls.add_method('Serialize', |
| 5424 | 'void', |
| 5425 | [param('ns3::Buffer::Iterator', 'start')], |
| 5426 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5427 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5428 | cls.add_method('SetName', |
| 5429 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5430 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5431 | return |
| 5432 | |
| 5433 | def register_Ns3CcnxContentObjectTail_methods(root_module, cls): |
| 5434 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor] |
| 5435 | cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')]) |
| 5436 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor] |
| 5437 | cls.add_constructor([]) |
| 5438 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5439 | cls.add_method('Deserialize', |
| 5440 | 'uint32_t', |
| 5441 | [param('ns3::Buffer::Iterator', 'start')], |
| 5442 | is_virtual=True) |
| 5443 | ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function] |
| 5444 | cls.add_method('GetInstanceTypeId', |
| 5445 | 'ns3::TypeId', |
| 5446 | [], |
| 5447 | is_const=True, is_virtual=True) |
| 5448 | ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function] |
| 5449 | cls.add_method('GetSerializedSize', |
| 5450 | 'uint32_t', |
| 5451 | [], |
| 5452 | is_const=True, is_virtual=True) |
| 5453 | ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function] |
| 5454 | cls.add_method('GetTypeId', |
| 5455 | 'ns3::TypeId', |
| 5456 | [], |
| 5457 | is_static=True) |
| 5458 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function] |
| 5459 | cls.add_method('Print', |
| 5460 | 'void', |
| 5461 | [param('std::ostream &', 'os')], |
| 5462 | is_const=True, is_virtual=True) |
| 5463 | ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5464 | cls.add_method('Serialize', |
| 5465 | 'void', |
| 5466 | [param('ns3::Buffer::Iterator', 'start')], |
| 5467 | is_const=True, is_virtual=True) |
| 5468 | return |
| 5469 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5470 | def register_Ns3CcnxContentStore_methods(root_module, cls): |
| 5471 | cls.add_output_stream_operator() |
| 5472 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::CcnxContentStore::CcnxContentStore() [constructor] |
| 5473 | cls.add_constructor([]) |
| 5474 | ## ccnx-content-store.h (module 'NDNabstraction'): void ns3::CcnxContentStore::Add(ns3::Ptr<ns3::CcnxContentObjectHeader> header, ns3::Ptr<ns3::Packet const> packet) [member function] |
| 5475 | cls.add_method('Add', |
| 5476 | 'void', |
| 5477 | [param('ns3::Ptr< ns3::CcnxContentObjectHeader >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
| 5478 | ## ccnx-content-store.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentStore::GetMaxSize() const [member function] |
| 5479 | cls.add_method('GetMaxSize', |
| 5480 | 'uint32_t', |
| 5481 | [], |
| 5482 | is_const=True) |
| 5483 | ## ccnx-content-store.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentStore::GetTypeId() [member function] |
| 5484 | cls.add_method('GetTypeId', |
| 5485 | 'ns3::TypeId', |
| 5486 | [], |
| 5487 | is_static=True) |
| 5488 | ## ccnx-content-store.h (module 'NDNabstraction'): ns3::Ptr<ns3::Packet> ns3::CcnxContentStore::Lookup(ns3::Ptr<const ns3::CcnxInterestHeader> interest) [member function] |
| 5489 | cls.add_method('Lookup', |
| 5490 | 'ns3::Ptr< ns3::Packet >', |
| 5491 | [param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'interest')]) |
| 5492 | ## ccnx-content-store.h (module 'NDNabstraction'): void ns3::CcnxContentStore::Print() const [member function] |
| 5493 | cls.add_method('Print', |
| 5494 | 'void', |
| 5495 | [], |
| 5496 | is_const=True) |
| 5497 | ## ccnx-content-store.h (module 'NDNabstraction'): void ns3::CcnxContentStore::SetMaxSize(uint32_t maxSize) [member function] |
| 5498 | cls.add_method('SetMaxSize', |
| 5499 | 'void', |
| 5500 | [param('uint32_t', 'maxSize')]) |
| 5501 | return |
| 5502 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5503 | def register_Ns3CcnxFace_methods(root_module, cls): |
| 5504 | cls.add_output_stream_operator() |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5505 | cls.add_binary_comparison_operator('<') |
| 5506 | cls.add_binary_comparison_operator('==') |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5507 | ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace() [constructor] |
| 5508 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5509 | ## ccnx-face.h (module 'NDNabstraction'): uint32_t ns3::CcnxFace::GetId() const [member function] |
| 5510 | cls.add_method('GetId', |
| 5511 | 'uint32_t', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5512 | [], |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5513 | is_const=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5514 | ## ccnx-face.h (module 'NDNabstraction'): uint16_t ns3::CcnxFace::GetMetric() const [member function] |
| 5515 | cls.add_method('GetMetric', |
| 5516 | 'uint16_t', |
| 5517 | [], |
| 5518 | is_const=True, is_virtual=True) |
| 5519 | ## ccnx-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function] |
| 5520 | cls.add_method('GetTypeId', |
| 5521 | 'ns3::TypeId', |
| 5522 | [], |
| 5523 | is_static=True) |
| 5524 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsDown() const [member function] |
| 5525 | cls.add_method('IsDown', |
| 5526 | 'bool', |
| 5527 | [], |
| 5528 | is_const=True, is_virtual=True) |
| 5529 | ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsUp() const [member function] |
| 5530 | cls.add_method('IsUp', |
| 5531 | 'bool', |
| 5532 | [], |
| 5533 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5534 | ## 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] |
| 5535 | cls.add_method('RegisterProtocolHandler', |
| 5536 | 'void', |
| 5537 | [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')], |
| 5538 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5539 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 5540 | cls.add_method('Send', |
| 5541 | 'void', |
| 5542 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5543 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5544 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetDown() [member function] |
| 5545 | cls.add_method('SetDown', |
| 5546 | 'void', |
| 5547 | [], |
| 5548 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5549 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetId(uint32_t id) [member function] |
| 5550 | cls.add_method('SetId', |
| 5551 | 'void', |
| 5552 | [param('uint32_t', 'id')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5553 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function] |
| 5554 | cls.add_method('SetMetric', |
| 5555 | 'void', |
| 5556 | [param('uint16_t', 'metric')], |
| 5557 | is_virtual=True) |
| 5558 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 5559 | cls.add_method('SetNode', |
| 5560 | 'void', |
| 5561 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 5562 | is_virtual=True) |
| 5563 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetUp() [member function] |
| 5564 | cls.add_method('SetUp', |
| 5565 | 'void', |
| 5566 | [], |
| 5567 | is_virtual=True) |
| 5568 | ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::DoDispose() [member function] |
| 5569 | cls.add_method('DoDispose', |
| 5570 | 'void', |
| 5571 | [], |
| 5572 | visibility='protected', is_virtual=True) |
| 5573 | return |
| 5574 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5575 | def register_Ns3CcnxFaceContainer_methods(root_module, cls): |
| 5576 | ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor] |
| 5577 | cls.add_constructor([]) |
| 5578 | ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor] |
| 5579 | cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')]) |
| 5580 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 5581 | cls.add_method('Add', |
| 5582 | 'void', |
| 5583 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')]) |
| 5584 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::Ptr<ns3::CcnxFaceContainer> other) [member function] |
| 5585 | cls.add_method('AddAll', |
| 5586 | 'void', |
| 5587 | [param('ns3::Ptr< ns3::CcnxFaceContainer >', 'other')]) |
| 5588 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function] |
| 5589 | cls.add_method('AddAll', |
| 5590 | 'void', |
| 5591 | [param('ns3::CcnxFaceContainer const &', 'other')]) |
| 5592 | ## 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] |
| 5593 | cls.add_method('Begin', |
| 5594 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', |
| 5595 | [], |
| 5596 | is_const=True) |
| 5597 | ## 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] |
| 5598 | cls.add_method('End', |
| 5599 | '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', |
| 5600 | [], |
| 5601 | is_const=True) |
| 5602 | ## 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] |
| 5603 | cls.add_method('Get', |
| 5604 | 'ns3::Ptr< ns3::CcnxFace >', |
| 5605 | [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')], |
| 5606 | is_const=True) |
| 5607 | ## ccnx-face-container.h (module 'NDNabstraction'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function] |
| 5608 | cls.add_method('GetN', |
| 5609 | 'uint32_t', |
| 5610 | [], |
| 5611 | is_const=True) |
| 5612 | ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::SetMetricToAll(uint16_t metric) [member function] |
| 5613 | cls.add_method('SetMetricToAll', |
| 5614 | 'void', |
| 5615 | [param('uint16_t', 'metric')]) |
| 5616 | return |
| 5617 | |
| 5618 | def register_Ns3CcnxFibEntry_methods(root_module, cls): |
| 5619 | cls.add_output_stream_operator() |
| 5620 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxFibEntry const & arg0) [copy constructor] |
| 5621 | cls.add_constructor([param('ns3::CcnxFibEntry const &', 'arg0')]) |
| 5622 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::Ptr<ns3::CcnxNameComponents> prefix) [constructor] |
| 5623 | cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents >', 'prefix')]) |
| 5624 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibEntry::FindBestCandidate(int skip=0) [member function] |
| 5625 | cls.add_method('FindBestCandidate', |
| 5626 | 'ns3::Ptr< ns3::CcnxFace >', |
| 5627 | [param('int', 'skip', default_value='0')]) |
| 5628 | ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxFibEntry::GetPrefix() const [member function] |
| 5629 | cls.add_method('GetPrefix', |
| 5630 | 'ns3::CcnxNameComponents const &', |
| 5631 | [], |
| 5632 | is_const=True) |
| 5633 | ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateStatus(ns3::Ptr<ns3::CcnxFace> face, uint8_t status) [member function] |
| 5634 | cls.add_method('UpdateStatus', |
| 5635 | 'void', |
| 5636 | [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('uint8_t', 'status')]) |
| 5637 | return |
| 5638 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5639 | def register_Ns3CcnxForwardingStrategy_methods(root_module, cls): |
| 5640 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy::CcnxForwardingStrategy() [constructor] |
| 5641 | cls.add_constructor([]) |
| 5642 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy::CcnxForwardingStrategy(ns3::CcnxForwardingStrategy const & arg0) [copy constructor] |
| 5643 | cls.add_constructor([param('ns3::CcnxForwardingStrategy const &', 'arg0')]) |
| 5644 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxForwardingStrategy::GetTypeId() [member function] |
| 5645 | cls.add_method('GetTypeId', |
| 5646 | 'ns3::TypeId', |
| 5647 | [], |
| 5648 | is_static=True) |
| 5649 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::NotifyInterfaceDown(uint32_t interface) [member function] |
| 5650 | cls.add_method('NotifyInterfaceDown', |
| 5651 | 'void', |
| 5652 | [param('uint32_t', 'interface')], |
| 5653 | is_pure_virtual=True, is_virtual=True) |
| 5654 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::NotifyInterfaceUp(uint32_t interface) [member function] |
| 5655 | cls.add_method('NotifyInterfaceUp', |
| 5656 | 'void', |
| 5657 | [param('uint32_t', 'interface')], |
| 5658 | is_pure_virtual=True, is_virtual=True) |
| 5659 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::PrintForwardingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function] |
| 5660 | cls.add_method('PrintForwardingTable', |
| 5661 | 'void', |
| 5662 | [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], |
| 5663 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 5664 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): bool ns3::CcnxForwardingStrategy::RouteInput(ns3::Ptr<ns3::Packet> p, ns3::Ptr<ns3::CcnxFace> iface, ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ptr<ns3::CcnxRoute>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function] |
| 5665 | cls.add_method('RouteInput', |
| 5666 | 'bool', |
| 5667 | [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ptr< ns3::CcnxFace >', 'iface'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ptr< ns3::CcnxRoute >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')], |
| 5668 | is_pure_virtual=True, is_virtual=True) |
| 5669 | ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::SetCcnx(ns3::Ptr<ns3::Ccnx> ccnx) [member function] |
| 5670 | cls.add_method('SetCcnx', |
| 5671 | 'void', |
| 5672 | [param('ns3::Ptr< ns3::Ccnx >', 'ccnx')], |
| 5673 | is_virtual=True) |
| 5674 | return |
| 5675 | |
| 5676 | def register_Ns3CcnxInterestHeader_methods(root_module, cls): |
| 5677 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor] |
| 5678 | cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')]) |
| 5679 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor] |
| 5680 | cls.add_constructor([]) |
| 5681 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
| 5682 | cls.add_method('Deserialize', |
| 5683 | 'uint32_t', |
| 5684 | [param('ns3::Buffer::Iterator', 'start')], |
| 5685 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5686 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetExclude() const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5687 | cls.add_method('GetExclude', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5688 | 'ns3::CcnxNameComponents const &', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5689 | [], |
| 5690 | is_const=True) |
| 5691 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function] |
| 5692 | cls.add_method('GetInstanceTypeId', |
| 5693 | 'ns3::TypeId', |
| 5694 | [], |
| 5695 | is_const=True, is_virtual=True) |
| 5696 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function] |
| 5697 | cls.add_method('GetInterestLifetime', |
| 5698 | 'ns3::Time', |
| 5699 | [], |
| 5700 | is_const=True) |
| 5701 | ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function] |
| 5702 | cls.add_method('GetMaxSuffixComponents', |
| 5703 | 'int32_t', |
| 5704 | [], |
| 5705 | is_const=True) |
| 5706 | ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function] |
| 5707 | cls.add_method('GetMinSuffixComponents', |
| 5708 | 'int32_t', |
| 5709 | [], |
| 5710 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5711 | ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetName() const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5712 | cls.add_method('GetName', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5713 | 'ns3::CcnxNameComponents const &', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5714 | [], |
| 5715 | is_const=True) |
| 5716 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function] |
| 5717 | cls.add_method('GetNonce', |
| 5718 | 'uint32_t', |
| 5719 | [], |
| 5720 | is_const=True) |
| 5721 | ## ccnx-interest-header.h (module 'NDNabstraction'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function] |
| 5722 | cls.add_method('GetScope', |
| 5723 | 'int8_t', |
| 5724 | [], |
| 5725 | is_const=True) |
| 5726 | ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function] |
| 5727 | cls.add_method('GetSerializedSize', |
| 5728 | 'uint32_t', |
| 5729 | [], |
| 5730 | is_const=True, is_virtual=True) |
| 5731 | ## ccnx-interest-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function] |
| 5732 | cls.add_method('GetTypeId', |
| 5733 | 'ns3::TypeId', |
| 5734 | [], |
| 5735 | is_static=True) |
| 5736 | ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function] |
| 5737 | cls.add_method('IsEnabledAnswerOriginKind', |
| 5738 | 'bool', |
| 5739 | [], |
| 5740 | is_const=True) |
| 5741 | ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function] |
| 5742 | cls.add_method('IsEnabledChildSelector', |
| 5743 | 'bool', |
| 5744 | [], |
| 5745 | is_const=True) |
| 5746 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function] |
| 5747 | cls.add_method('Print', |
| 5748 | 'void', |
| 5749 | [param('std::ostream &', 'os')], |
| 5750 | is_const=True, is_virtual=True) |
| 5751 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
| 5752 | cls.add_method('Serialize', |
| 5753 | 'void', |
| 5754 | [param('ns3::Buffer::Iterator', 'start')], |
| 5755 | is_const=True, is_virtual=True) |
| 5756 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function] |
| 5757 | cls.add_method('SetAnswerOriginKind', |
| 5758 | 'void', |
| 5759 | [param('bool', 'value')]) |
| 5760 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function] |
| 5761 | cls.add_method('SetChildSelector', |
| 5762 | 'void', |
| 5763 | [param('bool', 'value')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5764 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::CcnxNameComponents> const & exclude) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5765 | cls.add_method('SetExclude', |
| 5766 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5767 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'exclude')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5768 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function] |
| 5769 | cls.add_method('SetInterestLifetime', |
| 5770 | 'void', |
| 5771 | [param('ns3::Time', 'time')]) |
| 5772 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function] |
| 5773 | cls.add_method('SetMaxSuffixComponents', |
| 5774 | 'void', |
| 5775 | [param('int32_t', 'value')]) |
| 5776 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function] |
| 5777 | cls.add_method('SetMinSuffixComponents', |
| 5778 | 'void', |
| 5779 | [param('int32_t', 'value')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5780 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5781 | cls.add_method('SetName', |
| 5782 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5783 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5784 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function] |
| 5785 | cls.add_method('SetNonce', |
| 5786 | 'void', |
| 5787 | [param('uint32_t', 'nonce')]) |
| 5788 | ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function] |
| 5789 | cls.add_method('SetScope', |
| 5790 | 'void', |
| 5791 | [param('int8_t', 'scope')]) |
| 5792 | return |
| 5793 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5794 | def register_Ns3CcnxInterestSender_methods(root_module, cls): |
| 5795 | ## ccnx-interest-sender.h (module 'NDNabstraction'): ns3::CcnxInterestSender::CcnxInterestSender(ns3::CcnxInterestSender const & arg0) [copy constructor] |
| 5796 | cls.add_constructor([param('ns3::CcnxInterestSender const &', 'arg0')]) |
| 5797 | ## ccnx-interest-sender.h (module 'NDNabstraction'): ns3::CcnxInterestSender::CcnxInterestSender() [constructor] |
| 5798 | cls.add_constructor([]) |
| 5799 | ## ccnx-interest-sender.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestSender::GetTypeId() [member function] |
| 5800 | cls.add_method('GetTypeId', |
| 5801 | 'ns3::TypeId', |
| 5802 | [], |
| 5803 | is_static=True) |
| 5804 | ## ccnx-interest-sender.h (module 'NDNabstraction'): void ns3::CcnxInterestSender::DoDispose() [member function] |
| 5805 | cls.add_method('DoDispose', |
| 5806 | 'void', |
| 5807 | [], |
| 5808 | visibility='protected', is_virtual=True) |
| 5809 | ## ccnx-interest-sender.h (module 'NDNabstraction'): void ns3::CcnxInterestSender::StartApplication() [member function] |
| 5810 | cls.add_method('StartApplication', |
| 5811 | 'void', |
| 5812 | [], |
| 5813 | visibility='private', is_virtual=True) |
| 5814 | ## ccnx-interest-sender.h (module 'NDNabstraction'): void ns3::CcnxInterestSender::StopApplication() [member function] |
| 5815 | cls.add_method('StopApplication', |
| 5816 | 'void', |
| 5817 | [], |
| 5818 | visibility='private', is_virtual=True) |
| 5819 | return |
| 5820 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5821 | def register_Ns3CcnxL3Protocol_methods(root_module, cls): |
| 5822 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::ETHERNET_FRAME_TYPE [variable] |
| 5823 | cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True) |
| 5824 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::IP_PROTOCOL_TYPE [variable] |
| 5825 | cls.add_static_attribute('IP_PROTOCOL_TYPE', 'uint16_t const', is_const=True) |
| 5826 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::UDP_PORT [variable] |
| 5827 | cls.add_static_attribute('UDP_PORT', 'uint16_t const', is_const=True) |
| 5828 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxL3Protocol::GetTypeId() [member function] |
| 5829 | cls.add_method('GetTypeId', |
| 5830 | 'ns3::TypeId', |
| 5831 | [], |
| 5832 | is_static=True) |
| 5833 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::CcnxL3Protocol() [constructor] |
| 5834 | cls.add_constructor([]) |
| 5835 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 5836 | cls.add_method('SetNode', |
| 5837 | 'void', |
| 5838 | [param('ns3::Ptr< ns3::Node >', 'node')]) |
| 5839 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function] |
| 5840 | cls.add_method('SetForwardingStrategy', |
| 5841 | 'void', |
| 5842 | [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')], |
| 5843 | is_virtual=True) |
| 5844 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::CcnxL3Protocol::GetForwardingStrategy() const [member function] |
| 5845 | cls.add_method('GetForwardingStrategy', |
| 5846 | 'ns3::Ptr< ns3::CcnxForwardingStrategy >', |
| 5847 | [], |
| 5848 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5849 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::Send(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet> const & packet) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5850 | cls.add_method('Send', |
| 5851 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5852 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet > const &', 'packet')], |
| 5853 | is_virtual=True) |
| 5854 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::Receive(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet const> const & p) [member function] |
| 5855 | cls.add_method('Receive', |
| 5856 | 'void', |
| 5857 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet const > const &', 'p')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5858 | is_virtual=True) |
| 5859 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint32_t ns3::CcnxL3Protocol::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function] |
| 5860 | cls.add_method('AddFace', |
| 5861 | 'uint32_t', |
| 5862 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')], |
| 5863 | is_virtual=True) |
| 5864 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint32_t ns3::CcnxL3Protocol::GetNFaces() const [member function] |
| 5865 | cls.add_method('GetNFaces', |
| 5866 | 'uint32_t', |
| 5867 | [], |
| 5868 | is_const=True, is_virtual=True) |
| 5869 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxL3Protocol::GetFace(uint32_t face) const [member function] |
| 5870 | cls.add_method('GetFace', |
| 5871 | 'ns3::Ptr< ns3::CcnxFace >', |
| 5872 | [param('uint32_t', 'face')], |
| 5873 | is_const=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5874 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::CcnxInterestHeader> const & header, ns3::Ptr<ns3::Packet> const & p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5875 | cls.add_method('ReceiveAndProcess', |
| 5876 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5877 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::CcnxInterestHeader > const &', 'header'), param('ns3::Ptr< ns3::Packet > const &', 'p')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5878 | visibility='protected', is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5879 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::CcnxContentObjectHeader> const & header, ns3::Ptr<ns3::Packet> const & p) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5880 | cls.add_method('ReceiveAndProcess', |
| 5881 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5882 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::CcnxContentObjectHeader > const &', 'header'), param('ns3::Ptr< ns3::Packet > const &', 'p')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5883 | visibility='protected', is_virtual=True) |
| 5884 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::DoDispose() [member function] |
| 5885 | cls.add_method('DoDispose', |
| 5886 | 'void', |
| 5887 | [], |
| 5888 | visibility='protected', is_virtual=True) |
| 5889 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::NotifyNewAggregate() [member function] |
| 5890 | cls.add_method('NotifyNewAggregate', |
| 5891 | 'void', |
| 5892 | [], |
| 5893 | visibility='protected', is_virtual=True) |
| 5894 | ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> face, ns3::Ptr<ns3::Header> header, ns3::Ptr<ns3::Packet> p) [member function] |
| 5895 | cls.add_method('ReceiveAndProcess', |
| 5896 | 'void', |
| 5897 | [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Ptr< ns3::Header >', 'header'), param('ns3::Ptr< ns3::Packet >', 'p')], |
| 5898 | visibility='private', is_virtual=True) |
| 5899 | return |
| 5900 | |
| 5901 | def register_Ns3CcnxLocalFace_methods(root_module, cls): |
| 5902 | cls.add_output_stream_operator() |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5903 | ## ccnx-local-face.h (module 'NDNabstraction'): ns3::CcnxLocalFace::CcnxLocalFace() [constructor] |
| 5904 | cls.add_constructor([]) |
| 5905 | ## ccnx-local-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxLocalFace::GetTypeId() [member function] |
| 5906 | cls.add_method('GetTypeId', |
| 5907 | 'ns3::TypeId', |
| 5908 | [], |
| 5909 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5910 | ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::Receive(ns3::Ptr<ns3::Packet> p) [member function] |
| 5911 | cls.add_method('Receive', |
| 5912 | 'void', |
| 5913 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 5914 | ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::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] |
| 5915 | cls.add_method('RegisterProtocolHandler', |
| 5916 | 'void', |
| 5917 | [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')], |
| 5918 | is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 5919 | ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 5920 | cls.add_method('Send', |
| 5921 | 'void', |
| 5922 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 5923 | is_virtual=True) |
| 5924 | ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::DoDispose() [member function] |
| 5925 | cls.add_method('DoDispose', |
| 5926 | 'void', |
| 5927 | [], |
| 5928 | visibility='protected', is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 5929 | return |
| 5930 | |
| 5931 | def register_Ns3CcnxNameComponents_methods(root_module, cls): |
| 5932 | cls.add_output_stream_operator() |
| 5933 | cls.add_binary_comparison_operator('<') |
| 5934 | cls.add_binary_comparison_operator('==') |
| 5935 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(ns3::CcnxNameComponents const & arg0) [copy constructor] |
| 5936 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'arg0')]) |
| 5937 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents() [constructor] |
| 5938 | cls.add_constructor([]) |
| 5939 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(std::string const & s) [constructor] |
| 5940 | cls.add_constructor([param('std::string const &', 's')]) |
| 5941 | ## 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] |
| 5942 | cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')]) |
| 5943 | ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponents::Add(std::string const & s) [member function] |
| 5944 | cls.add_method('Add', |
| 5945 | 'void', |
| 5946 | [param('std::string const &', 's')]) |
| 5947 | ## ccnx-name-components.h (module 'NDNabstraction'): std::list<std::string, std::allocator<std::string> > const & ns3::CcnxNameComponents::GetComponents() const [member function] |
| 5948 | cls.add_method('GetComponents', |
| 5949 | 'std::list< std::string > const &', |
| 5950 | [], |
| 5951 | is_const=True) |
| 5952 | ## 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] |
| 5953 | cls.add_method('GetSubComponents', |
| 5954 | 'std::list< boost::reference_wrapper< std::string const > >', |
| 5955 | [param('size_t', 'num')], |
| 5956 | is_const=True) |
| 5957 | ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponents::Print(std::ostream & os) const [member function] |
| 5958 | cls.add_method('Print', |
| 5959 | 'void', |
| 5960 | [param('std::ostream &', 'os')], |
| 5961 | is_const=True) |
| 5962 | ## ccnx-name-components.h (module 'NDNabstraction'): size_t ns3::CcnxNameComponents::size() const [member function] |
| 5963 | cls.add_method('size', |
| 5964 | 'size_t', |
| 5965 | [], |
| 5966 | is_const=True) |
| 5967 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents & ns3::CcnxNameComponents::operator()(std::string const & s) [member operator] |
| 5968 | cls.add_method('operator()', |
| 5969 | 'ns3::CcnxNameComponents &', |
| 5970 | [param('std::string const &', 's')], |
| 5971 | custom_name='__call__') |
| 5972 | return |
| 5973 | |
| 5974 | def register_Ns3CcnxNameComponentsChecker_methods(root_module, cls): |
| 5975 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker() [constructor] |
| 5976 | cls.add_constructor([]) |
| 5977 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker(ns3::CcnxNameComponentsChecker const & arg0) [copy constructor] |
| 5978 | cls.add_constructor([param('ns3::CcnxNameComponentsChecker const &', 'arg0')]) |
| 5979 | return |
| 5980 | |
| 5981 | def register_Ns3CcnxNameComponentsValue_methods(root_module, cls): |
| 5982 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue() [constructor] |
| 5983 | cls.add_constructor([]) |
| 5984 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponentsValue const & arg0) [copy constructor] |
| 5985 | cls.add_constructor([param('ns3::CcnxNameComponentsValue const &', 'arg0')]) |
| 5986 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponents const & value) [constructor] |
| 5987 | cls.add_constructor([param('ns3::CcnxNameComponents const &', 'value')]) |
| 5988 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::CcnxNameComponentsValue::Copy() const [member function] |
| 5989 | cls.add_method('Copy', |
| 5990 | 'ns3::Ptr< ns3::AttributeValue >', |
| 5991 | [], |
| 5992 | is_const=True, is_virtual=True) |
| 5993 | ## ccnx-name-components.h (module 'NDNabstraction'): bool ns3::CcnxNameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 5994 | cls.add_method('DeserializeFromString', |
| 5995 | 'bool', |
| 5996 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 5997 | is_virtual=True) |
| 5998 | ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents ns3::CcnxNameComponentsValue::Get() const [member function] |
| 5999 | cls.add_method('Get', |
| 6000 | 'ns3::CcnxNameComponents', |
| 6001 | [], |
| 6002 | is_const=True) |
| 6003 | ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6004 | cls.add_method('SerializeToString', |
| 6005 | 'std::string', |
| 6006 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6007 | is_const=True, is_virtual=True) |
| 6008 | ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponentsValue::Set(ns3::CcnxNameComponents const & value) [member function] |
| 6009 | cls.add_method('Set', |
| 6010 | 'void', |
| 6011 | [param('ns3::CcnxNameComponents const &', 'value')]) |
| 6012 | return |
| 6013 | |
| 6014 | def register_Ns3CcnxNetDeviceFace_methods(root_module, cls): |
| 6015 | cls.add_output_stream_operator() |
| 6016 | ## ccnx-net-device-face.h (module 'NDNabstraction'): ns3::CcnxNetDeviceFace::CcnxNetDeviceFace(ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor] |
| 6017 | cls.add_constructor([param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')]) |
| 6018 | ## ccnx-net-device-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::NetDevice> ns3::CcnxNetDeviceFace::GetNetDevice() const [member function] |
| 6019 | cls.add_method('GetNetDevice', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6020 | 'ns3::Ptr< ns3::NetDevice >', |
| 6021 | [], |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6022 | is_const=True) |
| 6023 | ## ccnx-net-device-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxNetDeviceFace::GetTypeId() [member function] |
| 6024 | cls.add_method('GetTypeId', |
| 6025 | 'ns3::TypeId', |
| 6026 | [], |
| 6027 | is_static=True) |
| 6028 | ## ccnx-net-device-face.h (module 'NDNabstraction'): void ns3::CcnxNetDeviceFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function] |
| 6029 | cls.add_method('RegisterProtocolHandler', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6030 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6031 | [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')], |
| 6032 | is_virtual=True) |
| 6033 | ## ccnx-net-device-face.h (module 'NDNabstraction'): void ns3::CcnxNetDeviceFace::Send(ns3::Ptr<ns3::Packet> p) [member function] |
| 6034 | cls.add_method('Send', |
| 6035 | 'void', |
| 6036 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 6037 | is_virtual=True) |
| 6038 | ## ccnx-net-device-face.h (module 'NDNabstraction'): void ns3::CcnxNetDeviceFace::DoDispose() [member function] |
| 6039 | cls.add_method('DoDispose', |
| 6040 | 'void', |
| 6041 | [], |
| 6042 | visibility='protected', is_virtual=True) |
| 6043 | return |
| 6044 | |
| 6045 | def register_Ns3CcnxPit_methods(root_module, cls): |
| 6046 | cls.add_output_stream_operator() |
| 6047 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPit::CcnxPit(ns3::CcnxPit const & arg0) [copy constructor] |
| 6048 | cls.add_constructor([param('ns3::CcnxPit const &', 'arg0')]) |
| 6049 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPit::CcnxPit() [constructor] |
| 6050 | cls.add_constructor([]) |
| 6051 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::Time ns3::CcnxPit::GetCleanupTimeout() const [member function] |
| 6052 | cls.add_method('GetCleanupTimeout', |
| 6053 | 'ns3::Time', |
| 6054 | [], |
| 6055 | is_const=True) |
| 6056 | ## ccnx-pit.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxPit::GetTypeId() [member function] |
| 6057 | cls.add_method('GetTypeId', |
| 6058 | 'ns3::TypeId', |
| 6059 | [], |
| 6060 | is_static=True) |
| 6061 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntry const & ns3::CcnxPit::Lookup(ns3::CcnxContentObjectHeader const & header) const [member function] |
| 6062 | cls.add_method('Lookup', |
| 6063 | 'ns3::CcnxPitEntry const &', |
| 6064 | [param('ns3::CcnxContentObjectHeader const &', 'header')], |
| 6065 | is_const=True) |
| 6066 | ## ccnx-pit.h (module 'NDNabstraction'): ns3::CcnxPitEntry const & ns3::CcnxPit::Lookup(ns3::CcnxInterestHeader const & header) const [member function] |
| 6067 | cls.add_method('Lookup', |
| 6068 | 'ns3::CcnxPitEntry const &', |
| 6069 | [param('ns3::CcnxInterestHeader const &', 'header')], |
| 6070 | is_const=True) |
| 6071 | ## ccnx-pit.h (module 'NDNabstraction'): void ns3::CcnxPit::SetCleanupTimeout(ns3::Time const & timeout) [member function] |
| 6072 | cls.add_method('SetCleanupTimeout', |
| 6073 | 'void', |
| 6074 | [param('ns3::Time const &', 'timeout')]) |
| 6075 | return |
| 6076 | |
| 6077 | def register_Ns3CcnxProducer_methods(root_module, cls): |
| 6078 | ## ccnx-producer.h (module 'NDNabstraction'): ns3::CcnxProducer::CcnxProducer(ns3::CcnxProducer const & arg0) [copy constructor] |
| 6079 | cls.add_constructor([param('ns3::CcnxProducer const &', 'arg0')]) |
| 6080 | ## ccnx-producer.h (module 'NDNabstraction'): ns3::CcnxProducer::CcnxProducer() [constructor] |
| 6081 | cls.add_constructor([]) |
| 6082 | ## ccnx-producer.h (module 'NDNabstraction'): void ns3::CcnxProducer::AddContentStoreEntry(ns3::Ptr<ns3::CcnxContentObjectHeader> header, ns3::Ptr<ns3::Packet const> packet) [member function] |
| 6083 | cls.add_method('AddContentStoreEntry', |
| 6084 | 'void', |
| 6085 | [param('ns3::Ptr< ns3::CcnxContentObjectHeader >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
| 6086 | ## ccnx-producer.h (module 'NDNabstraction'): uint32_t ns3::CcnxProducer::GetStoreCapacity() [member function] |
| 6087 | cls.add_method('GetStoreCapacity', |
| 6088 | 'uint32_t', |
| 6089 | []) |
| 6090 | ## ccnx-producer.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxProducer::GetTypeId() [member function] |
| 6091 | cls.add_method('GetTypeId', |
| 6092 | 'ns3::TypeId', |
| 6093 | [], |
| 6094 | is_static=True) |
| 6095 | ## ccnx-producer.h (module 'NDNabstraction'): void ns3::CcnxProducer::HandlePacket(ns3::Ptr<ns3::CcnxFace> const & face, ns3::Ptr<ns3::Packet const> const & packet) [member function] |
| 6096 | cls.add_method('HandlePacket', |
| 6097 | 'void', |
| 6098 | [param('ns3::Ptr< ns3::CcnxFace > const &', 'face'), param('ns3::Ptr< ns3::Packet const > const &', 'packet')]) |
| 6099 | ## ccnx-producer.h (module 'NDNabstraction'): void ns3::CcnxProducer::DoDispose() [member function] |
| 6100 | cls.add_method('DoDispose', |
| 6101 | 'void', |
| 6102 | [], |
| 6103 | visibility='protected', is_virtual=True) |
| 6104 | ## ccnx-producer.h (module 'NDNabstraction'): void ns3::CcnxProducer::StartApplication() [member function] |
| 6105 | cls.add_method('StartApplication', |
| 6106 | 'void', |
| 6107 | [], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6108 | visibility='private', is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6109 | ## ccnx-producer.h (module 'NDNabstraction'): void ns3::CcnxProducer::StopApplication() [member function] |
| 6110 | cls.add_method('StopApplication', |
| 6111 | 'void', |
| 6112 | [], |
| 6113 | visibility='private', is_virtual=True) |
| 6114 | return |
| 6115 | |
| 6116 | def register_Ns3CcnxRit_methods(root_module, cls): |
| 6117 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRit::CcnxRit(ns3::CcnxRit const & arg0) [copy constructor] |
| 6118 | cls.add_constructor([param('ns3::CcnxRit const &', 'arg0')]) |
| 6119 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::CcnxRit::CcnxRit() [constructor] |
| 6120 | cls.add_constructor([]) |
| 6121 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::Time ns3::CcnxRit::GetCleanupTimeout() const [member function] |
| 6122 | cls.add_method('GetCleanupTimeout', |
| 6123 | 'ns3::Time', |
| 6124 | [], |
| 6125 | is_const=True) |
| 6126 | ## ccnx-rit.h (module 'NDNabstraction'): ns3::Time ns3::CcnxRit::GetRitTimeout() const [member function] |
| 6127 | cls.add_method('GetRitTimeout', |
| 6128 | 'ns3::Time', |
| 6129 | [], |
| 6130 | is_const=True) |
| 6131 | ## ccnx-rit.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxRit::GetTypeId() [member function] |
| 6132 | cls.add_method('GetTypeId', |
| 6133 | 'ns3::TypeId', |
| 6134 | [], |
| 6135 | is_static=True) |
| 6136 | ## ccnx-rit.h (module 'NDNabstraction'): void ns3::CcnxRit::SetCleanupTimeout(ns3::Time const & timeout) [member function] |
| 6137 | cls.add_method('SetCleanupTimeout', |
| 6138 | 'void', |
| 6139 | [param('ns3::Time const &', 'timeout')]) |
| 6140 | ## ccnx-rit.h (module 'NDNabstraction'): void ns3::CcnxRit::SetRecentlySatisfied(ns3::CcnxInterestHeader const & header) [member function] |
| 6141 | cls.add_method('SetRecentlySatisfied', |
| 6142 | 'void', |
| 6143 | [param('ns3::CcnxInterestHeader const &', 'header')]) |
| 6144 | ## ccnx-rit.h (module 'NDNabstraction'): void ns3::CcnxRit::SetRitTimeout(ns3::Time const & timeout) [member function] |
| 6145 | cls.add_method('SetRitTimeout', |
| 6146 | 'void', |
| 6147 | [param('ns3::Time const &', 'timeout')]) |
| 6148 | ## ccnx-rit.h (module 'NDNabstraction'): bool ns3::CcnxRit::WasRecentlySatisfied(ns3::CcnxInterestHeader const & header) [member function] |
| 6149 | cls.add_method('WasRecentlySatisfied', |
| 6150 | 'bool', |
| 6151 | [param('ns3::CcnxInterestHeader const &', 'header')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6152 | return |
| 6153 | |
| 6154 | def register_Ns3CcnxRoute_methods(root_module, cls): |
| 6155 | cls.add_output_stream_operator() |
| 6156 | ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute::CcnxRoute(ns3::CcnxRoute const & arg0) [copy constructor] |
| 6157 | cls.add_constructor([param('ns3::CcnxRoute const &', 'arg0')]) |
| 6158 | ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute::CcnxRoute() [constructor] |
| 6159 | cls.add_constructor([]) |
| 6160 | ## ccnx-route.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxRoute::GetOutputFace() const [member function] |
| 6161 | cls.add_method('GetOutputFace', |
| 6162 | 'ns3::Ptr< ns3::CcnxFace >', |
| 6163 | [], |
| 6164 | is_const=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6165 | ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxRoute::GetPrefix() const [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6166 | cls.add_method('GetPrefix', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6167 | 'ns3::CcnxNameComponents const &', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6168 | [], |
| 6169 | is_const=True) |
| 6170 | ## ccnx-route.h (module 'NDNabstraction'): void ns3::CcnxRoute::SetOutputFace(ns3::Ptr<ns3::CcnxFace> outputDevice) [member function] |
| 6171 | cls.add_method('SetOutputFace', |
| 6172 | 'void', |
| 6173 | [param('ns3::Ptr< ns3::CcnxFace >', 'outputDevice')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6174 | ## ccnx-route.h (module 'NDNabstraction'): void ns3::CcnxRoute::SetPrefix(ns3::Ptr<ns3::CcnxNameComponents> const & dest) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6175 | cls.add_method('SetPrefix', |
| 6176 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6177 | [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'dest')]) |
| 6178 | return |
| 6179 | |
| 6180 | def register_Ns3DataRateChecker_methods(root_module, cls): |
| 6181 | ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker() [constructor] |
| 6182 | cls.add_constructor([]) |
| 6183 | ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker(ns3::DataRateChecker const & arg0) [copy constructor] |
| 6184 | cls.add_constructor([param('ns3::DataRateChecker const &', 'arg0')]) |
| 6185 | return |
| 6186 | |
| 6187 | def register_Ns3DataRateValue_methods(root_module, cls): |
| 6188 | ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue() [constructor] |
| 6189 | cls.add_constructor([]) |
| 6190 | ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRateValue const & arg0) [copy constructor] |
| 6191 | cls.add_constructor([param('ns3::DataRateValue const &', 'arg0')]) |
| 6192 | ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRate const & value) [constructor] |
| 6193 | cls.add_constructor([param('ns3::DataRate const &', 'value')]) |
| 6194 | ## data-rate.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::DataRateValue::Copy() const [member function] |
| 6195 | cls.add_method('Copy', |
| 6196 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6197 | [], |
| 6198 | is_const=True, is_virtual=True) |
| 6199 | ## data-rate.h (module 'network'): bool ns3::DataRateValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6200 | cls.add_method('DeserializeFromString', |
| 6201 | 'bool', |
| 6202 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6203 | is_virtual=True) |
| 6204 | ## data-rate.h (module 'network'): ns3::DataRate ns3::DataRateValue::Get() const [member function] |
| 6205 | cls.add_method('Get', |
| 6206 | 'ns3::DataRate', |
| 6207 | [], |
| 6208 | is_const=True) |
| 6209 | ## data-rate.h (module 'network'): std::string ns3::DataRateValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6210 | cls.add_method('SerializeToString', |
| 6211 | 'std::string', |
| 6212 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6213 | is_const=True, is_virtual=True) |
| 6214 | ## data-rate.h (module 'network'): void ns3::DataRateValue::Set(ns3::DataRate const & value) [member function] |
| 6215 | cls.add_method('Set', |
| 6216 | 'void', |
| 6217 | [param('ns3::DataRate const &', 'value')]) |
| 6218 | return |
| 6219 | |
| 6220 | def register_Ns3DropTailQueue_methods(root_module, cls): |
| 6221 | ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue(ns3::DropTailQueue const & arg0) [copy constructor] |
| 6222 | cls.add_constructor([param('ns3::DropTailQueue const &', 'arg0')]) |
| 6223 | ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue() [constructor] |
| 6224 | cls.add_constructor([]) |
| 6225 | ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::Mode ns3::DropTailQueue::GetMode() [member function] |
| 6226 | cls.add_method('GetMode', |
| 6227 | 'ns3::DropTailQueue::Mode', |
| 6228 | []) |
| 6229 | ## drop-tail-queue.h (module 'network'): static ns3::TypeId ns3::DropTailQueue::GetTypeId() [member function] |
| 6230 | cls.add_method('GetTypeId', |
| 6231 | 'ns3::TypeId', |
| 6232 | [], |
| 6233 | is_static=True) |
| 6234 | ## drop-tail-queue.h (module 'network'): void ns3::DropTailQueue::SetMode(ns3::DropTailQueue::Mode mode) [member function] |
| 6235 | cls.add_method('SetMode', |
| 6236 | 'void', |
| 6237 | [param('ns3::DropTailQueue::Mode', 'mode')]) |
| 6238 | ## drop-tail-queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::DropTailQueue::DoDequeue() [member function] |
| 6239 | cls.add_method('DoDequeue', |
| 6240 | 'ns3::Ptr< ns3::Packet >', |
| 6241 | [], |
| 6242 | visibility='private', is_virtual=True) |
| 6243 | ## drop-tail-queue.h (module 'network'): bool ns3::DropTailQueue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function] |
| 6244 | cls.add_method('DoEnqueue', |
| 6245 | 'bool', |
| 6246 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 6247 | visibility='private', is_virtual=True) |
| 6248 | ## drop-tail-queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::DropTailQueue::DoPeek() const [member function] |
| 6249 | cls.add_method('DoPeek', |
| 6250 | 'ns3::Ptr< ns3::Packet const >', |
| 6251 | [], |
| 6252 | is_const=True, visibility='private', is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6253 | return |
| 6254 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6255 | def register_Ns3EmptyAttributeValue_methods(root_module, cls): |
| 6256 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor] |
| 6257 | cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')]) |
| 6258 | ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor] |
| 6259 | cls.add_constructor([]) |
| 6260 | ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function] |
| 6261 | cls.add_method('Copy', |
| 6262 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6263 | [], |
| 6264 | is_const=True, visibility='private', is_virtual=True) |
| 6265 | ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6266 | cls.add_method('DeserializeFromString', |
| 6267 | 'bool', |
| 6268 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6269 | visibility='private', is_virtual=True) |
| 6270 | ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6271 | cls.add_method('SerializeToString', |
| 6272 | 'std::string', |
| 6273 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6274 | is_const=True, visibility='private', is_virtual=True) |
| 6275 | return |
| 6276 | |
| 6277 | def register_Ns3EventImpl_methods(root_module, cls): |
| 6278 | ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor] |
| 6279 | cls.add_constructor([param('ns3::EventImpl const &', 'arg0')]) |
| 6280 | ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor] |
| 6281 | cls.add_constructor([]) |
| 6282 | ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function] |
| 6283 | cls.add_method('Cancel', |
| 6284 | 'void', |
| 6285 | []) |
| 6286 | ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function] |
| 6287 | cls.add_method('Invoke', |
| 6288 | 'void', |
| 6289 | []) |
| 6290 | ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function] |
| 6291 | cls.add_method('IsCancelled', |
| 6292 | 'bool', |
| 6293 | []) |
| 6294 | ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function] |
| 6295 | cls.add_method('Notify', |
| 6296 | 'void', |
| 6297 | [], |
| 6298 | is_pure_virtual=True, visibility='protected', is_virtual=True) |
| 6299 | return |
| 6300 | |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 6301 | def register_Ns3IntegerValue_methods(root_module, cls): |
| 6302 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor] |
| 6303 | cls.add_constructor([]) |
| 6304 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor] |
| 6305 | cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')]) |
| 6306 | ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor] |
| 6307 | cls.add_constructor([param('int64_t const &', 'value')]) |
| 6308 | ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function] |
| 6309 | cls.add_method('Copy', |
| 6310 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6311 | [], |
| 6312 | is_const=True, is_virtual=True) |
| 6313 | ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6314 | cls.add_method('DeserializeFromString', |
| 6315 | 'bool', |
| 6316 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6317 | is_virtual=True) |
| 6318 | ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function] |
| 6319 | cls.add_method('Get', |
| 6320 | 'int64_t', |
| 6321 | [], |
| 6322 | is_const=True) |
| 6323 | ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6324 | cls.add_method('SerializeToString', |
| 6325 | 'std::string', |
| 6326 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6327 | is_const=True, is_virtual=True) |
| 6328 | ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function] |
| 6329 | cls.add_method('Set', |
| 6330 | 'void', |
| 6331 | [param('int64_t const &', 'value')]) |
| 6332 | return |
| 6333 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6334 | def register_Ns3Ipv4AddressChecker_methods(root_module, cls): |
| 6335 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor] |
| 6336 | cls.add_constructor([]) |
| 6337 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor] |
| 6338 | cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')]) |
| 6339 | return |
| 6340 | |
| 6341 | def register_Ns3Ipv4AddressValue_methods(root_module, cls): |
| 6342 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor] |
| 6343 | cls.add_constructor([]) |
| 6344 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor] |
| 6345 | cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')]) |
| 6346 | ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor] |
| 6347 | cls.add_constructor([param('ns3::Ipv4Address const &', 'value')]) |
| 6348 | ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function] |
| 6349 | cls.add_method('Copy', |
| 6350 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6351 | [], |
| 6352 | is_const=True, is_virtual=True) |
| 6353 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6354 | cls.add_method('DeserializeFromString', |
| 6355 | 'bool', |
| 6356 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6357 | is_virtual=True) |
| 6358 | ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function] |
| 6359 | cls.add_method('Get', |
| 6360 | 'ns3::Ipv4Address', |
| 6361 | [], |
| 6362 | is_const=True) |
| 6363 | ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6364 | cls.add_method('SerializeToString', |
| 6365 | 'std::string', |
| 6366 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6367 | is_const=True, is_virtual=True) |
| 6368 | ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function] |
| 6369 | cls.add_method('Set', |
| 6370 | 'void', |
| 6371 | [param('ns3::Ipv4Address const &', 'value')]) |
| 6372 | return |
| 6373 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6374 | def register_Ns3Ipv4MaskChecker_methods(root_module, cls): |
| 6375 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor] |
| 6376 | cls.add_constructor([]) |
| 6377 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor] |
| 6378 | cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')]) |
| 6379 | return |
| 6380 | |
| 6381 | def register_Ns3Ipv4MaskValue_methods(root_module, cls): |
| 6382 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor] |
| 6383 | cls.add_constructor([]) |
| 6384 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor] |
| 6385 | cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')]) |
| 6386 | ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor] |
| 6387 | cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')]) |
| 6388 | ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function] |
| 6389 | cls.add_method('Copy', |
| 6390 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6391 | [], |
| 6392 | is_const=True, is_virtual=True) |
| 6393 | ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6394 | cls.add_method('DeserializeFromString', |
| 6395 | 'bool', |
| 6396 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6397 | is_virtual=True) |
| 6398 | ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function] |
| 6399 | cls.add_method('Get', |
| 6400 | 'ns3::Ipv4Mask', |
| 6401 | [], |
| 6402 | is_const=True) |
| 6403 | ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6404 | cls.add_method('SerializeToString', |
| 6405 | 'std::string', |
| 6406 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6407 | is_const=True, is_virtual=True) |
| 6408 | ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function] |
| 6409 | cls.add_method('Set', |
| 6410 | 'void', |
| 6411 | [param('ns3::Ipv4Mask const &', 'value')]) |
| 6412 | return |
| 6413 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6414 | def register_Ns3Ipv6AddressChecker_methods(root_module, cls): |
| 6415 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor] |
| 6416 | cls.add_constructor([]) |
| 6417 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor] |
| 6418 | cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')]) |
| 6419 | return |
| 6420 | |
| 6421 | def register_Ns3Ipv6AddressValue_methods(root_module, cls): |
| 6422 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor] |
| 6423 | cls.add_constructor([]) |
| 6424 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor] |
| 6425 | cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')]) |
| 6426 | ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor] |
| 6427 | cls.add_constructor([param('ns3::Ipv6Address const &', 'value')]) |
| 6428 | ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function] |
| 6429 | cls.add_method('Copy', |
| 6430 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6431 | [], |
| 6432 | is_const=True, is_virtual=True) |
| 6433 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6434 | cls.add_method('DeserializeFromString', |
| 6435 | 'bool', |
| 6436 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6437 | is_virtual=True) |
| 6438 | ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function] |
| 6439 | cls.add_method('Get', |
| 6440 | 'ns3::Ipv6Address', |
| 6441 | [], |
| 6442 | is_const=True) |
| 6443 | ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6444 | cls.add_method('SerializeToString', |
| 6445 | 'std::string', |
| 6446 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6447 | is_const=True, is_virtual=True) |
| 6448 | ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function] |
| 6449 | cls.add_method('Set', |
| 6450 | 'void', |
| 6451 | [param('ns3::Ipv6Address const &', 'value')]) |
| 6452 | return |
| 6453 | |
| 6454 | def register_Ns3Ipv6PrefixChecker_methods(root_module, cls): |
| 6455 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor] |
| 6456 | cls.add_constructor([]) |
| 6457 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor] |
| 6458 | cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')]) |
| 6459 | return |
| 6460 | |
| 6461 | def register_Ns3Ipv6PrefixValue_methods(root_module, cls): |
| 6462 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor] |
| 6463 | cls.add_constructor([]) |
| 6464 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor] |
| 6465 | cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')]) |
| 6466 | ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor] |
| 6467 | cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')]) |
| 6468 | ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function] |
| 6469 | cls.add_method('Copy', |
| 6470 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6471 | [], |
| 6472 | is_const=True, is_virtual=True) |
| 6473 | ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6474 | cls.add_method('DeserializeFromString', |
| 6475 | 'bool', |
| 6476 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6477 | is_virtual=True) |
| 6478 | ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function] |
| 6479 | cls.add_method('Get', |
| 6480 | 'ns3::Ipv6Prefix', |
| 6481 | [], |
| 6482 | is_const=True) |
| 6483 | ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6484 | cls.add_method('SerializeToString', |
| 6485 | 'std::string', |
| 6486 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6487 | is_const=True, is_virtual=True) |
| 6488 | ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function] |
| 6489 | cls.add_method('Set', |
| 6490 | 'void', |
| 6491 | [param('ns3::Ipv6Prefix const &', 'value')]) |
| 6492 | return |
| 6493 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6494 | def register_Ns3Mac48AddressChecker_methods(root_module, cls): |
| 6495 | ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker() [constructor] |
| 6496 | cls.add_constructor([]) |
| 6497 | ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker(ns3::Mac48AddressChecker const & arg0) [copy constructor] |
| 6498 | cls.add_constructor([param('ns3::Mac48AddressChecker const &', 'arg0')]) |
| 6499 | return |
| 6500 | |
| 6501 | def register_Ns3Mac48AddressValue_methods(root_module, cls): |
| 6502 | ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue() [constructor] |
| 6503 | cls.add_constructor([]) |
| 6504 | ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48AddressValue const & arg0) [copy constructor] |
| 6505 | cls.add_constructor([param('ns3::Mac48AddressValue const &', 'arg0')]) |
| 6506 | ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48Address const & value) [constructor] |
| 6507 | cls.add_constructor([param('ns3::Mac48Address const &', 'value')]) |
| 6508 | ## mac48-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Mac48AddressValue::Copy() const [member function] |
| 6509 | cls.add_method('Copy', |
| 6510 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6511 | [], |
| 6512 | is_const=True, is_virtual=True) |
| 6513 | ## mac48-address.h (module 'network'): bool ns3::Mac48AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6514 | cls.add_method('DeserializeFromString', |
| 6515 | 'bool', |
| 6516 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6517 | is_virtual=True) |
| 6518 | ## mac48-address.h (module 'network'): ns3::Mac48Address ns3::Mac48AddressValue::Get() const [member function] |
| 6519 | cls.add_method('Get', |
| 6520 | 'ns3::Mac48Address', |
| 6521 | [], |
| 6522 | is_const=True) |
| 6523 | ## mac48-address.h (module 'network'): std::string ns3::Mac48AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6524 | cls.add_method('SerializeToString', |
| 6525 | 'std::string', |
| 6526 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6527 | is_const=True, is_virtual=True) |
| 6528 | ## mac48-address.h (module 'network'): void ns3::Mac48AddressValue::Set(ns3::Mac48Address const & value) [member function] |
| 6529 | cls.add_method('Set', |
| 6530 | 'void', |
| 6531 | [param('ns3::Mac48Address const &', 'value')]) |
| 6532 | return |
| 6533 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6534 | def register_Ns3NetDevice_methods(root_module, cls): |
| 6535 | ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor] |
| 6536 | cls.add_constructor([]) |
| 6537 | ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor] |
| 6538 | cls.add_constructor([param('ns3::NetDevice const &', 'arg0')]) |
| 6539 | ## 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] |
| 6540 | cls.add_method('AddLinkChangeCallback', |
| 6541 | 'void', |
| 6542 | [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
| 6543 | is_pure_virtual=True, is_virtual=True) |
| 6544 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function] |
| 6545 | cls.add_method('GetAddress', |
| 6546 | 'ns3::Address', |
| 6547 | [], |
| 6548 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6549 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function] |
| 6550 | cls.add_method('GetBroadcast', |
| 6551 | 'ns3::Address', |
| 6552 | [], |
| 6553 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6554 | ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function] |
| 6555 | cls.add_method('GetChannel', |
| 6556 | 'ns3::Ptr< ns3::Channel >', |
| 6557 | [], |
| 6558 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6559 | ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function] |
| 6560 | cls.add_method('GetIfIndex', |
| 6561 | 'uint32_t', |
| 6562 | [], |
| 6563 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6564 | ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function] |
| 6565 | cls.add_method('GetMtu', |
| 6566 | 'uint16_t', |
| 6567 | [], |
| 6568 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6569 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
| 6570 | cls.add_method('GetMulticast', |
| 6571 | 'ns3::Address', |
| 6572 | [param('ns3::Ipv4Address', 'multicastGroup')], |
| 6573 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6574 | ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
| 6575 | cls.add_method('GetMulticast', |
| 6576 | 'ns3::Address', |
| 6577 | [param('ns3::Ipv6Address', 'addr')], |
| 6578 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6579 | ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function] |
| 6580 | cls.add_method('GetNode', |
| 6581 | 'ns3::Ptr< ns3::Node >', |
| 6582 | [], |
| 6583 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6584 | ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function] |
| 6585 | cls.add_method('GetTypeId', |
| 6586 | 'ns3::TypeId', |
| 6587 | [], |
| 6588 | is_static=True) |
| 6589 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function] |
| 6590 | cls.add_method('IsBridge', |
| 6591 | 'bool', |
| 6592 | [], |
| 6593 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6594 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function] |
| 6595 | cls.add_method('IsBroadcast', |
| 6596 | 'bool', |
| 6597 | [], |
| 6598 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6599 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function] |
| 6600 | cls.add_method('IsLinkUp', |
| 6601 | 'bool', |
| 6602 | [], |
| 6603 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6604 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function] |
| 6605 | cls.add_method('IsMulticast', |
| 6606 | 'bool', |
| 6607 | [], |
| 6608 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6609 | ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function] |
| 6610 | cls.add_method('IsPointToPoint', |
| 6611 | 'bool', |
| 6612 | [], |
| 6613 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6614 | ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function] |
| 6615 | cls.add_method('NeedsArp', |
| 6616 | 'bool', |
| 6617 | [], |
| 6618 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6619 | ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
| 6620 | cls.add_method('Send', |
| 6621 | 'bool', |
| 6622 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 6623 | is_pure_virtual=True, is_virtual=True) |
| 6624 | ## 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] |
| 6625 | cls.add_method('SendFrom', |
| 6626 | 'bool', |
| 6627 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 6628 | is_pure_virtual=True, is_virtual=True) |
| 6629 | ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function] |
| 6630 | cls.add_method('SetAddress', |
| 6631 | 'void', |
| 6632 | [param('ns3::Address', 'address')], |
| 6633 | is_pure_virtual=True, is_virtual=True) |
| 6634 | ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function] |
| 6635 | cls.add_method('SetIfIndex', |
| 6636 | 'void', |
| 6637 | [param('uint32_t const', 'index')], |
| 6638 | is_pure_virtual=True, is_virtual=True) |
| 6639 | ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function] |
| 6640 | cls.add_method('SetMtu', |
| 6641 | 'bool', |
| 6642 | [param('uint16_t const', 'mtu')], |
| 6643 | is_pure_virtual=True, is_virtual=True) |
| 6644 | ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 6645 | cls.add_method('SetNode', |
| 6646 | 'void', |
| 6647 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 6648 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6649 | ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool, 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> cb) [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6650 | cls.add_method('SetPromiscReceiveCallback', |
| 6651 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6652 | [param('ns3::Callback< bool, 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 >', 'cb')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6653 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6654 | ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6655 | cls.add_method('SetReceiveCallback', |
| 6656 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6657 | [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6658 | is_pure_virtual=True, is_virtual=True) |
| 6659 | ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function] |
| 6660 | cls.add_method('SupportsSendFrom', |
| 6661 | 'bool', |
| 6662 | [], |
| 6663 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 6664 | return |
| 6665 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6666 | def register_Ns3NixVector_methods(root_module, cls): |
| 6667 | cls.add_output_stream_operator() |
| 6668 | ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor] |
| 6669 | cls.add_constructor([]) |
| 6670 | ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor] |
| 6671 | cls.add_constructor([param('ns3::NixVector const &', 'o')]) |
| 6672 | ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function] |
| 6673 | cls.add_method('AddNeighborIndex', |
| 6674 | 'void', |
| 6675 | [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')]) |
| 6676 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function] |
| 6677 | cls.add_method('BitCount', |
| 6678 | 'uint32_t', |
| 6679 | [param('uint32_t', 'numberOfNeighbors')], |
| 6680 | is_const=True) |
| 6681 | ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function] |
| 6682 | cls.add_method('Copy', |
| 6683 | 'ns3::Ptr< ns3::NixVector >', |
| 6684 | [], |
| 6685 | is_const=True) |
| 6686 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function] |
| 6687 | cls.add_method('Deserialize', |
| 6688 | 'uint32_t', |
| 6689 | [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')]) |
| 6690 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function] |
| 6691 | cls.add_method('ExtractNeighborIndex', |
| 6692 | 'uint32_t', |
| 6693 | [param('uint32_t', 'numberOfBits')]) |
| 6694 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function] |
| 6695 | cls.add_method('GetRemainingBits', |
| 6696 | 'uint32_t', |
| 6697 | []) |
| 6698 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function] |
| 6699 | cls.add_method('GetSerializedSize', |
| 6700 | 'uint32_t', |
| 6701 | [], |
| 6702 | is_const=True) |
| 6703 | ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function] |
| 6704 | cls.add_method('Serialize', |
| 6705 | 'uint32_t', |
| 6706 | [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 6707 | is_const=True) |
| 6708 | return |
| 6709 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6710 | def register_Ns3Node_methods(root_module, cls): |
| 6711 | ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor] |
| 6712 | cls.add_constructor([param('ns3::Node const &', 'arg0')]) |
| 6713 | ## node.h (module 'network'): ns3::Node::Node() [constructor] |
| 6714 | cls.add_constructor([]) |
| 6715 | ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor] |
| 6716 | cls.add_constructor([param('uint32_t', 'systemId')]) |
| 6717 | ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function] |
| 6718 | cls.add_method('AddApplication', |
| 6719 | 'uint32_t', |
| 6720 | [param('ns3::Ptr< ns3::Application >', 'application')]) |
| 6721 | ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function] |
| 6722 | cls.add_method('AddDevice', |
| 6723 | 'uint32_t', |
| 6724 | [param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
| 6725 | ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function] |
| 6726 | cls.add_method('ChecksumEnabled', |
| 6727 | 'bool', |
| 6728 | [], |
| 6729 | is_static=True) |
| 6730 | ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function] |
| 6731 | cls.add_method('GetApplication', |
| 6732 | 'ns3::Ptr< ns3::Application >', |
| 6733 | [param('uint32_t', 'index')], |
| 6734 | is_const=True) |
| 6735 | ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function] |
| 6736 | cls.add_method('GetDevice', |
| 6737 | 'ns3::Ptr< ns3::NetDevice >', |
| 6738 | [param('uint32_t', 'index')], |
| 6739 | is_const=True) |
| 6740 | ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function] |
| 6741 | cls.add_method('GetId', |
| 6742 | 'uint32_t', |
| 6743 | [], |
| 6744 | is_const=True) |
| 6745 | ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function] |
| 6746 | cls.add_method('GetNApplications', |
| 6747 | 'uint32_t', |
| 6748 | [], |
| 6749 | is_const=True) |
| 6750 | ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function] |
| 6751 | cls.add_method('GetNDevices', |
| 6752 | 'uint32_t', |
| 6753 | [], |
| 6754 | is_const=True) |
| 6755 | ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function] |
| 6756 | cls.add_method('GetSystemId', |
| 6757 | 'uint32_t', |
| 6758 | [], |
| 6759 | is_const=True) |
| 6760 | ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function] |
| 6761 | cls.add_method('GetTypeId', |
| 6762 | 'ns3::TypeId', |
| 6763 | [], |
| 6764 | is_static=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6765 | ## 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] |
| 6766 | cls.add_method('RegisterDeviceAdditionListener', |
| 6767 | 'void', |
| 6768 | [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6769 | ## 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] |
| 6770 | cls.add_method('RegisterProtocolHandler', |
| 6771 | 'void', |
| 6772 | [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'handler'), param('uint16_t', 'protocolType'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'promiscuous', default_value='false')]) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6773 | ## 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] |
| 6774 | cls.add_method('UnregisterDeviceAdditionListener', |
| 6775 | 'void', |
| 6776 | [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6777 | ## 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] |
| 6778 | cls.add_method('UnregisterProtocolHandler', |
| 6779 | 'void', |
| 6780 | [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')]) |
| 6781 | ## node.h (module 'network'): void ns3::Node::DoDispose() [member function] |
| 6782 | cls.add_method('DoDispose', |
| 6783 | 'void', |
| 6784 | [], |
| 6785 | visibility='protected', is_virtual=True) |
| 6786 | ## node.h (module 'network'): void ns3::Node::DoStart() [member function] |
| 6787 | cls.add_method('DoStart', |
| 6788 | 'void', |
| 6789 | [], |
| 6790 | visibility='protected', is_virtual=True) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 6791 | return |
| 6792 | |
| 6793 | def register_Ns3ObjectFactoryChecker_methods(root_module, cls): |
| 6794 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor] |
| 6795 | cls.add_constructor([]) |
| 6796 | ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor] |
| 6797 | cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')]) |
| 6798 | return |
| 6799 | |
| 6800 | def register_Ns3ObjectFactoryValue_methods(root_module, cls): |
| 6801 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor] |
| 6802 | cls.add_constructor([]) |
| 6803 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor] |
| 6804 | cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')]) |
| 6805 | ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor] |
| 6806 | cls.add_constructor([param('ns3::ObjectFactory const &', 'value')]) |
| 6807 | ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function] |
| 6808 | cls.add_method('Copy', |
| 6809 | 'ns3::Ptr< ns3::AttributeValue >', |
| 6810 | [], |
| 6811 | is_const=True, is_virtual=True) |
| 6812 | ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 6813 | cls.add_method('DeserializeFromString', |
| 6814 | 'bool', |
| 6815 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6816 | is_virtual=True) |
| 6817 | ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function] |
| 6818 | cls.add_method('Get', |
| 6819 | 'ns3::ObjectFactory', |
| 6820 | [], |
| 6821 | is_const=True) |
| 6822 | ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 6823 | cls.add_method('SerializeToString', |
| 6824 | 'std::string', |
| 6825 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 6826 | is_const=True, is_virtual=True) |
| 6827 | ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function] |
| 6828 | cls.add_method('Set', |
| 6829 | 'void', |
| 6830 | [param('ns3::ObjectFactory const &', 'value')]) |
| 6831 | return |
| 6832 | |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6833 | def register_Ns3OutputStreamWrapper_methods(root_module, cls): |
| 6834 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor] |
| 6835 | cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')]) |
| 6836 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor] |
| 6837 | cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')]) |
| 6838 | ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor] |
| 6839 | cls.add_constructor([param('std::ostream *', 'os')]) |
| 6840 | ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function] |
| 6841 | cls.add_method('GetStream', |
| 6842 | 'std::ostream *', |
| 6843 | []) |
| 6844 | return |
| 6845 | |
| 6846 | def register_Ns3Packet_methods(root_module, cls): |
| 6847 | cls.add_output_stream_operator() |
| 6848 | ## packet.h (module 'network'): ns3::Packet::Packet() [constructor] |
| 6849 | cls.add_constructor([]) |
| 6850 | ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor] |
| 6851 | cls.add_constructor([param('ns3::Packet const &', 'o')]) |
| 6852 | ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor] |
| 6853 | cls.add_constructor([param('uint32_t', 'size')]) |
| 6854 | ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor] |
| 6855 | cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')]) |
| 6856 | ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor] |
| 6857 | cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 6858 | ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<ns3::Packet const> packet) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 6859 | cls.add_method('AddAtEnd', |
| 6860 | 'void', |
| 6861 | [param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
| 6862 | ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function] |
| 6863 | cls.add_method('AddByteTag', |
| 6864 | 'void', |
| 6865 | [param('ns3::Tag const &', 'tag')], |
| 6866 | is_const=True) |
| 6867 | ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function] |
| 6868 | cls.add_method('AddHeader', |
| 6869 | 'void', |
| 6870 | [param('ns3::Header const &', 'header')]) |
| 6871 | ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function] |
| 6872 | cls.add_method('AddPacketTag', |
| 6873 | 'void', |
| 6874 | [param('ns3::Tag const &', 'tag')], |
| 6875 | is_const=True) |
| 6876 | ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function] |
| 6877 | cls.add_method('AddPaddingAtEnd', |
| 6878 | 'void', |
| 6879 | [param('uint32_t', 'size')]) |
| 6880 | ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function] |
| 6881 | cls.add_method('AddTrailer', |
| 6882 | 'void', |
| 6883 | [param('ns3::Trailer const &', 'trailer')]) |
| 6884 | ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function] |
| 6885 | cls.add_method('BeginItem', |
| 6886 | 'ns3::PacketMetadata::ItemIterator', |
| 6887 | [], |
| 6888 | is_const=True) |
| 6889 | ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function] |
| 6890 | cls.add_method('Copy', |
| 6891 | 'ns3::Ptr< ns3::Packet >', |
| 6892 | [], |
| 6893 | is_const=True) |
| 6894 | ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function] |
| 6895 | cls.add_method('CopyData', |
| 6896 | 'uint32_t', |
| 6897 | [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], |
| 6898 | is_const=True) |
| 6899 | ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function] |
| 6900 | cls.add_method('CopyData', |
| 6901 | 'void', |
| 6902 | [param('std::ostream *', 'os'), param('uint32_t', 'size')], |
| 6903 | is_const=True) |
| 6904 | ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function] |
| 6905 | cls.add_method('CreateFragment', |
| 6906 | 'ns3::Ptr< ns3::Packet >', |
| 6907 | [param('uint32_t', 'start'), param('uint32_t', 'length')], |
| 6908 | is_const=True) |
| 6909 | ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function] |
| 6910 | cls.add_method('EnableChecking', |
| 6911 | 'void', |
| 6912 | [], |
| 6913 | is_static=True) |
| 6914 | ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function] |
| 6915 | cls.add_method('EnablePrinting', |
| 6916 | 'void', |
| 6917 | [], |
| 6918 | is_static=True) |
| 6919 | ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function] |
| 6920 | cls.add_method('FindFirstMatchingByteTag', |
| 6921 | 'bool', |
| 6922 | [param('ns3::Tag &', 'tag')], |
| 6923 | is_const=True) |
| 6924 | ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function] |
| 6925 | cls.add_method('GetByteTagIterator', |
| 6926 | 'ns3::ByteTagIterator', |
| 6927 | [], |
| 6928 | is_const=True) |
| 6929 | ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function] |
| 6930 | cls.add_method('GetNixVector', |
| 6931 | 'ns3::Ptr< ns3::NixVector >', |
| 6932 | [], |
| 6933 | is_const=True) |
| 6934 | ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function] |
| 6935 | cls.add_method('GetPacketTagIterator', |
| 6936 | 'ns3::PacketTagIterator', |
| 6937 | [], |
| 6938 | is_const=True) |
| 6939 | ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function] |
| 6940 | cls.add_method('GetSerializedSize', |
| 6941 | 'uint32_t', |
| 6942 | [], |
| 6943 | is_const=True) |
| 6944 | ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function] |
| 6945 | cls.add_method('GetSize', |
| 6946 | 'uint32_t', |
| 6947 | [], |
| 6948 | is_const=True) |
| 6949 | ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function] |
| 6950 | cls.add_method('GetUid', |
| 6951 | 'uint64_t', |
| 6952 | [], |
| 6953 | is_const=True) |
| 6954 | ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function] |
| 6955 | cls.add_method('PeekData', |
| 6956 | 'uint8_t const *', |
| 6957 | [], |
| 6958 | deprecated=True, is_const=True) |
| 6959 | ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function] |
| 6960 | cls.add_method('PeekHeader', |
| 6961 | 'uint32_t', |
| 6962 | [param('ns3::Header &', 'header')], |
| 6963 | is_const=True) |
| 6964 | ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function] |
| 6965 | cls.add_method('PeekPacketTag', |
| 6966 | 'bool', |
| 6967 | [param('ns3::Tag &', 'tag')], |
| 6968 | is_const=True) |
| 6969 | ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function] |
| 6970 | cls.add_method('PeekTrailer', |
| 6971 | 'uint32_t', |
| 6972 | [param('ns3::Trailer &', 'trailer')]) |
| 6973 | ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function] |
| 6974 | cls.add_method('Print', |
| 6975 | 'void', |
| 6976 | [param('std::ostream &', 'os')], |
| 6977 | is_const=True) |
| 6978 | ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function] |
| 6979 | cls.add_method('PrintByteTags', |
| 6980 | 'void', |
| 6981 | [param('std::ostream &', 'os')], |
| 6982 | is_const=True) |
| 6983 | ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function] |
| 6984 | cls.add_method('PrintPacketTags', |
| 6985 | 'void', |
| 6986 | [param('std::ostream &', 'os')], |
| 6987 | is_const=True) |
| 6988 | ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function] |
| 6989 | cls.add_method('RemoveAllByteTags', |
| 6990 | 'void', |
| 6991 | []) |
| 6992 | ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function] |
| 6993 | cls.add_method('RemoveAllPacketTags', |
| 6994 | 'void', |
| 6995 | []) |
| 6996 | ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function] |
| 6997 | cls.add_method('RemoveAtEnd', |
| 6998 | 'void', |
| 6999 | [param('uint32_t', 'size')]) |
| 7000 | ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function] |
| 7001 | cls.add_method('RemoveAtStart', |
| 7002 | 'void', |
| 7003 | [param('uint32_t', 'size')]) |
| 7004 | ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function] |
| 7005 | cls.add_method('RemoveHeader', |
| 7006 | 'uint32_t', |
| 7007 | [param('ns3::Header &', 'header')]) |
| 7008 | ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function] |
| 7009 | cls.add_method('RemovePacketTag', |
| 7010 | 'bool', |
| 7011 | [param('ns3::Tag &', 'tag')]) |
| 7012 | ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function] |
| 7013 | cls.add_method('RemoveTrailer', |
| 7014 | 'uint32_t', |
| 7015 | [param('ns3::Trailer &', 'trailer')]) |
| 7016 | ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function] |
| 7017 | cls.add_method('Serialize', |
| 7018 | 'uint32_t', |
| 7019 | [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], |
| 7020 | is_const=True) |
| 7021 | ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function] |
| 7022 | cls.add_method('SetNixVector', |
| 7023 | 'void', |
| 7024 | [param('ns3::Ptr< ns3::NixVector >', 'arg0')]) |
| 7025 | return |
| 7026 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7027 | def register_Ns3PointToPointNetDevice_methods(root_module, cls): |
| 7028 | ## point-to-point-net-device.h (module 'point-to-point'): static ns3::TypeId ns3::PointToPointNetDevice::GetTypeId() [member function] |
| 7029 | cls.add_method('GetTypeId', |
| 7030 | 'ns3::TypeId', |
| 7031 | [], |
| 7032 | is_static=True) |
| 7033 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::PointToPointNetDevice::PointToPointNetDevice() [constructor] |
| 7034 | cls.add_constructor([]) |
| 7035 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetDataRate(ns3::DataRate bps) [member function] |
| 7036 | cls.add_method('SetDataRate', |
| 7037 | 'void', |
| 7038 | [param('ns3::DataRate', 'bps')]) |
| 7039 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetInterframeGap(ns3::Time t) [member function] |
| 7040 | cls.add_method('SetInterframeGap', |
| 7041 | 'void', |
| 7042 | [param('ns3::Time', 't')]) |
| 7043 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::Attach(ns3::Ptr<ns3::PointToPointChannel> ch) [member function] |
| 7044 | cls.add_method('Attach', |
| 7045 | 'bool', |
| 7046 | [param('ns3::Ptr< ns3::PointToPointChannel >', 'ch')]) |
| 7047 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetQueue(ns3::Ptr<ns3::Queue> queue) [member function] |
| 7048 | cls.add_method('SetQueue', |
| 7049 | 'void', |
| 7050 | [param('ns3::Ptr< ns3::Queue >', 'queue')]) |
| 7051 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Ptr<ns3::Queue> ns3::PointToPointNetDevice::GetQueue() const [member function] |
| 7052 | cls.add_method('GetQueue', |
| 7053 | 'ns3::Ptr< ns3::Queue >', |
| 7054 | [], |
| 7055 | is_const=True) |
| 7056 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetReceiveErrorModel(ns3::Ptr<ns3::ErrorModel> em) [member function] |
| 7057 | cls.add_method('SetReceiveErrorModel', |
| 7058 | 'void', |
| 7059 | [param('ns3::Ptr< ns3::ErrorModel >', 'em')]) |
| 7060 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::Receive(ns3::Ptr<ns3::Packet> p) [member function] |
| 7061 | cls.add_method('Receive', |
| 7062 | 'void', |
| 7063 | [param('ns3::Ptr< ns3::Packet >', 'p')]) |
| 7064 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetIfIndex(uint32_t const index) [member function] |
| 7065 | cls.add_method('SetIfIndex', |
| 7066 | 'void', |
| 7067 | [param('uint32_t const', 'index')], |
| 7068 | is_virtual=True) |
| 7069 | ## point-to-point-net-device.h (module 'point-to-point'): uint32_t ns3::PointToPointNetDevice::GetIfIndex() const [member function] |
| 7070 | cls.add_method('GetIfIndex', |
| 7071 | 'uint32_t', |
| 7072 | [], |
| 7073 | is_const=True, is_virtual=True) |
| 7074 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Ptr<ns3::Channel> ns3::PointToPointNetDevice::GetChannel() const [member function] |
| 7075 | cls.add_method('GetChannel', |
| 7076 | 'ns3::Ptr< ns3::Channel >', |
| 7077 | [], |
| 7078 | is_const=True, is_virtual=True) |
| 7079 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetAddress(ns3::Address address) [member function] |
| 7080 | cls.add_method('SetAddress', |
| 7081 | 'void', |
| 7082 | [param('ns3::Address', 'address')], |
| 7083 | is_virtual=True) |
| 7084 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Address ns3::PointToPointNetDevice::GetAddress() const [member function] |
| 7085 | cls.add_method('GetAddress', |
| 7086 | 'ns3::Address', |
| 7087 | [], |
| 7088 | is_const=True, is_virtual=True) |
| 7089 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::SetMtu(uint16_t const mtu) [member function] |
| 7090 | cls.add_method('SetMtu', |
| 7091 | 'bool', |
| 7092 | [param('uint16_t const', 'mtu')], |
| 7093 | is_virtual=True) |
| 7094 | ## point-to-point-net-device.h (module 'point-to-point'): uint16_t ns3::PointToPointNetDevice::GetMtu() const [member function] |
| 7095 | cls.add_method('GetMtu', |
| 7096 | 'uint16_t', |
| 7097 | [], |
| 7098 | is_const=True, is_virtual=True) |
| 7099 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::IsLinkUp() const [member function] |
| 7100 | cls.add_method('IsLinkUp', |
| 7101 | 'bool', |
| 7102 | [], |
| 7103 | is_const=True, is_virtual=True) |
| 7104 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::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] |
| 7105 | cls.add_method('AddLinkChangeCallback', |
| 7106 | 'void', |
| 7107 | [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
| 7108 | is_virtual=True) |
| 7109 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::IsBroadcast() const [member function] |
| 7110 | cls.add_method('IsBroadcast', |
| 7111 | 'bool', |
| 7112 | [], |
| 7113 | is_const=True, is_virtual=True) |
| 7114 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Address ns3::PointToPointNetDevice::GetBroadcast() const [member function] |
| 7115 | cls.add_method('GetBroadcast', |
| 7116 | 'ns3::Address', |
| 7117 | [], |
| 7118 | is_const=True, is_virtual=True) |
| 7119 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::IsMulticast() const [member function] |
| 7120 | cls.add_method('IsMulticast', |
| 7121 | 'bool', |
| 7122 | [], |
| 7123 | is_const=True, is_virtual=True) |
| 7124 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Address ns3::PointToPointNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
| 7125 | cls.add_method('GetMulticast', |
| 7126 | 'ns3::Address', |
| 7127 | [param('ns3::Ipv4Address', 'multicastGroup')], |
| 7128 | is_const=True, is_virtual=True) |
| 7129 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::IsPointToPoint() const [member function] |
| 7130 | cls.add_method('IsPointToPoint', |
| 7131 | 'bool', |
| 7132 | [], |
| 7133 | is_const=True, is_virtual=True) |
| 7134 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::IsBridge() const [member function] |
| 7135 | cls.add_method('IsBridge', |
| 7136 | 'bool', |
| 7137 | [], |
| 7138 | is_const=True, is_virtual=True) |
| 7139 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
| 7140 | cls.add_method('Send', |
| 7141 | 'bool', |
| 7142 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 7143 | is_virtual=True) |
| 7144 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
| 7145 | cls.add_method('SendFrom', |
| 7146 | 'bool', |
| 7147 | [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
| 7148 | is_virtual=True) |
| 7149 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Ptr<ns3::Node> ns3::PointToPointNetDevice::GetNode() const [member function] |
| 7150 | cls.add_method('GetNode', |
| 7151 | 'ns3::Ptr< ns3::Node >', |
| 7152 | [], |
| 7153 | is_const=True, is_virtual=True) |
| 7154 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
| 7155 | cls.add_method('SetNode', |
| 7156 | 'void', |
| 7157 | [param('ns3::Ptr< ns3::Node >', 'node')], |
| 7158 | is_virtual=True) |
| 7159 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::NeedsArp() const [member function] |
| 7160 | cls.add_method('NeedsArp', |
| 7161 | 'bool', |
| 7162 | [], |
| 7163 | is_const=True, is_virtual=True) |
| 7164 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
| 7165 | cls.add_method('SetReceiveCallback', |
| 7166 | 'void', |
| 7167 | [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
| 7168 | is_virtual=True) |
| 7169 | ## point-to-point-net-device.h (module 'point-to-point'): ns3::Address ns3::PointToPointNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
| 7170 | cls.add_method('GetMulticast', |
| 7171 | 'ns3::Address', |
| 7172 | [param('ns3::Ipv6Address', 'addr')], |
| 7173 | is_const=True, is_virtual=True) |
| 7174 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::SetPromiscReceiveCallback(ns3::Callback<bool, 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> cb) [member function] |
| 7175 | cls.add_method('SetPromiscReceiveCallback', |
| 7176 | 'void', |
| 7177 | [param('ns3::Callback< bool, 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 >', 'cb')], |
| 7178 | is_virtual=True) |
| 7179 | ## point-to-point-net-device.h (module 'point-to-point'): bool ns3::PointToPointNetDevice::SupportsSendFrom() const [member function] |
| 7180 | cls.add_method('SupportsSendFrom', |
| 7181 | 'bool', |
| 7182 | [], |
| 7183 | is_const=True, is_virtual=True) |
| 7184 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::DoMpiReceive(ns3::Ptr<ns3::Packet> p) [member function] |
| 7185 | cls.add_method('DoMpiReceive', |
| 7186 | 'void', |
| 7187 | [param('ns3::Ptr< ns3::Packet >', 'p')], |
| 7188 | visibility='protected') |
| 7189 | ## point-to-point-net-device.h (module 'point-to-point'): void ns3::PointToPointNetDevice::DoDispose() [member function] |
| 7190 | cls.add_method('DoDispose', |
| 7191 | 'void', |
| 7192 | [], |
| 7193 | visibility='private', is_virtual=True) |
| 7194 | return |
| 7195 | |
| 7196 | def register_Ns3PointerChecker_methods(root_module, cls): |
| 7197 | ## pointer.h (module 'core'): ns3::PointerChecker::PointerChecker() [constructor] |
| 7198 | cls.add_constructor([]) |
| 7199 | ## pointer.h (module 'core'): ns3::PointerChecker::PointerChecker(ns3::PointerChecker const & arg0) [copy constructor] |
| 7200 | cls.add_constructor([param('ns3::PointerChecker const &', 'arg0')]) |
| 7201 | ## pointer.h (module 'core'): ns3::TypeId ns3::PointerChecker::GetPointeeTypeId() const [member function] |
| 7202 | cls.add_method('GetPointeeTypeId', |
| 7203 | 'ns3::TypeId', |
| 7204 | [], |
| 7205 | is_pure_virtual=True, is_const=True, is_virtual=True) |
| 7206 | return |
| 7207 | |
| 7208 | def register_Ns3PointerValue_methods(root_module, cls): |
| 7209 | ## pointer.h (module 'core'): ns3::PointerValue::PointerValue(ns3::PointerValue const & arg0) [copy constructor] |
| 7210 | cls.add_constructor([param('ns3::PointerValue const &', 'arg0')]) |
| 7211 | ## pointer.h (module 'core'): ns3::PointerValue::PointerValue() [constructor] |
| 7212 | cls.add_constructor([]) |
| 7213 | ## pointer.h (module 'core'): ns3::PointerValue::PointerValue(ns3::Ptr<ns3::Object> object) [constructor] |
| 7214 | cls.add_constructor([param('ns3::Ptr< ns3::Object >', 'object')]) |
| 7215 | ## pointer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::PointerValue::Copy() const [member function] |
| 7216 | cls.add_method('Copy', |
| 7217 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7218 | [], |
| 7219 | is_const=True, is_virtual=True) |
| 7220 | ## pointer.h (module 'core'): bool ns3::PointerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7221 | cls.add_method('DeserializeFromString', |
| 7222 | 'bool', |
| 7223 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7224 | is_virtual=True) |
| 7225 | ## pointer.h (module 'core'): ns3::Ptr<ns3::Object> ns3::PointerValue::GetObject() const [member function] |
| 7226 | cls.add_method('GetObject', |
| 7227 | 'ns3::Ptr< ns3::Object >', |
| 7228 | [], |
| 7229 | is_const=True) |
| 7230 | ## pointer.h (module 'core'): std::string ns3::PointerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7231 | cls.add_method('SerializeToString', |
| 7232 | 'std::string', |
| 7233 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7234 | is_const=True, is_virtual=True) |
| 7235 | ## pointer.h (module 'core'): void ns3::PointerValue::SetObject(ns3::Ptr<ns3::Object> object) [member function] |
| 7236 | cls.add_method('SetObject', |
| 7237 | 'void', |
| 7238 | [param('ns3::Ptr< ns3::Object >', 'object')]) |
| 7239 | return |
| 7240 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 7241 | def register_Ns3RandomVariableChecker_methods(root_module, cls): |
| 7242 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor] |
| 7243 | cls.add_constructor([]) |
| 7244 | ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor] |
| 7245 | cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')]) |
| 7246 | return |
| 7247 | |
| 7248 | def register_Ns3RandomVariableValue_methods(root_module, cls): |
| 7249 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor] |
| 7250 | cls.add_constructor([]) |
| 7251 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor] |
| 7252 | cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')]) |
| 7253 | ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor] |
| 7254 | cls.add_constructor([param('ns3::RandomVariable const &', 'value')]) |
| 7255 | ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function] |
| 7256 | cls.add_method('Copy', |
| 7257 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7258 | [], |
| 7259 | is_const=True, is_virtual=True) |
| 7260 | ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7261 | cls.add_method('DeserializeFromString', |
| 7262 | 'bool', |
| 7263 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7264 | is_virtual=True) |
| 7265 | ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function] |
| 7266 | cls.add_method('Get', |
| 7267 | 'ns3::RandomVariable', |
| 7268 | [], |
| 7269 | is_const=True) |
| 7270 | ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7271 | cls.add_method('SerializeToString', |
| 7272 | 'std::string', |
| 7273 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7274 | is_const=True, is_virtual=True) |
| 7275 | ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function] |
| 7276 | cls.add_method('Set', |
| 7277 | 'void', |
| 7278 | [param('ns3::RandomVariable const &', 'value')]) |
| 7279 | return |
| 7280 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7281 | def register_Ns3StringChecker_methods(root_module, cls): |
| 7282 | ## string.h (module 'core'): ns3::StringChecker::StringChecker() [constructor] |
| 7283 | cls.add_constructor([]) |
| 7284 | ## string.h (module 'core'): ns3::StringChecker::StringChecker(ns3::StringChecker const & arg0) [copy constructor] |
| 7285 | cls.add_constructor([param('ns3::StringChecker const &', 'arg0')]) |
| 7286 | return |
| 7287 | |
| 7288 | def register_Ns3StringValue_methods(root_module, cls): |
| 7289 | ## string.h (module 'core'): ns3::StringValue::StringValue() [constructor] |
| 7290 | cls.add_constructor([]) |
| 7291 | ## string.h (module 'core'): ns3::StringValue::StringValue(ns3::StringValue const & arg0) [copy constructor] |
| 7292 | cls.add_constructor([param('ns3::StringValue const &', 'arg0')]) |
| 7293 | ## string.h (module 'core'): ns3::StringValue::StringValue(std::string const & value) [constructor] |
| 7294 | cls.add_constructor([param('std::string const &', 'value')]) |
| 7295 | ## string.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::StringValue::Copy() const [member function] |
| 7296 | cls.add_method('Copy', |
| 7297 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7298 | [], |
| 7299 | is_const=True, is_virtual=True) |
| 7300 | ## string.h (module 'core'): bool ns3::StringValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7301 | cls.add_method('DeserializeFromString', |
| 7302 | 'bool', |
| 7303 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7304 | is_virtual=True) |
| 7305 | ## string.h (module 'core'): std::string ns3::StringValue::Get() const [member function] |
| 7306 | cls.add_method('Get', |
| 7307 | 'std::string', |
| 7308 | [], |
| 7309 | is_const=True) |
| 7310 | ## string.h (module 'core'): std::string ns3::StringValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7311 | cls.add_method('SerializeToString', |
| 7312 | 'std::string', |
| 7313 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7314 | is_const=True, is_virtual=True) |
| 7315 | ## string.h (module 'core'): void ns3::StringValue::Set(std::string const & value) [member function] |
| 7316 | cls.add_method('Set', |
| 7317 | 'void', |
| 7318 | [param('std::string const &', 'value')]) |
| 7319 | return |
| 7320 | |
Ilya Moiseenko | 02fb706 | 2011-08-11 17:18:00 -0700 | [diff] [blame] | 7321 | def register_Ns3StupidInterestGenerator_methods(root_module, cls): |
| 7322 | ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator::StupidInterestGenerator(ns3::StupidInterestGenerator const & arg0) [copy constructor] |
| 7323 | cls.add_constructor([param('ns3::StupidInterestGenerator const &', 'arg0')]) |
| 7324 | ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator::StupidInterestGenerator() [constructor] |
| 7325 | cls.add_constructor([]) |
| 7326 | ## stupid-interest-generator.h (module 'NDNabstraction'): static ns3::TypeId ns3::StupidInterestGenerator::GetTypeId() [member function] |
| 7327 | cls.add_method('GetTypeId', |
| 7328 | 'ns3::TypeId', |
| 7329 | [], |
| 7330 | is_static=True) |
| 7331 | ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::DoDispose() [member function] |
| 7332 | cls.add_method('DoDispose', |
| 7333 | 'void', |
| 7334 | [], |
| 7335 | visibility='protected', is_virtual=True) |
| 7336 | ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::StartApplication() [member function] |
| 7337 | cls.add_method('StartApplication', |
| 7338 | 'void', |
| 7339 | [], |
| 7340 | visibility='private', is_virtual=True) |
| 7341 | ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::StopApplication() [member function] |
| 7342 | cls.add_method('StopApplication', |
| 7343 | 'void', |
| 7344 | [], |
| 7345 | visibility='private', is_virtual=True) |
| 7346 | return |
| 7347 | |
| 7348 | def register_Ns3StupidInterestSink_methods(root_module, cls): |
| 7349 | ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink::StupidInterestSink(ns3::StupidInterestSink const & arg0) [copy constructor] |
| 7350 | cls.add_constructor([param('ns3::StupidInterestSink const &', 'arg0')]) |
| 7351 | ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink::StupidInterestSink() [constructor] |
| 7352 | cls.add_constructor([]) |
| 7353 | ## stupid-interest-sink.h (module 'NDNabstraction'): std::list<ns3::Ptr<ns3::Socket>, std::allocator<ns3::Ptr<ns3::Socket> > > ns3::StupidInterestSink::GetAcceptedSockets() const [member function] |
| 7354 | cls.add_method('GetAcceptedSockets', |
| 7355 | 'std::list< ns3::Ptr< ns3::Socket > >', |
| 7356 | [], |
| 7357 | is_const=True) |
| 7358 | ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::Ptr<ns3::Socket> ns3::StupidInterestSink::GetListeningSocket() const [member function] |
| 7359 | cls.add_method('GetListeningSocket', |
| 7360 | 'ns3::Ptr< ns3::Socket >', |
| 7361 | [], |
| 7362 | is_const=True) |
| 7363 | ## stupid-interest-sink.h (module 'NDNabstraction'): uint32_t ns3::StupidInterestSink::GetTotalRx() const [member function] |
| 7364 | cls.add_method('GetTotalRx', |
| 7365 | 'uint32_t', |
| 7366 | [], |
| 7367 | is_const=True) |
| 7368 | ## stupid-interest-sink.h (module 'NDNabstraction'): static ns3::TypeId ns3::StupidInterestSink::GetTypeId() [member function] |
| 7369 | cls.add_method('GetTypeId', |
| 7370 | 'ns3::TypeId', |
| 7371 | [], |
| 7372 | is_static=True) |
| 7373 | ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::DoDispose() [member function] |
| 7374 | cls.add_method('DoDispose', |
| 7375 | 'void', |
| 7376 | [], |
| 7377 | visibility='protected', is_virtual=True) |
| 7378 | ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::StartApplication() [member function] |
| 7379 | cls.add_method('StartApplication', |
| 7380 | 'void', |
| 7381 | [], |
| 7382 | visibility='private', is_virtual=True) |
| 7383 | ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::StopApplication() [member function] |
| 7384 | cls.add_method('StopApplication', |
| 7385 | 'void', |
| 7386 | [], |
| 7387 | visibility='private', is_virtual=True) |
| 7388 | return |
| 7389 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 7390 | def register_Ns3TimeChecker_methods(root_module, cls): |
| 7391 | ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor] |
| 7392 | cls.add_constructor([]) |
| 7393 | ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor] |
| 7394 | cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')]) |
| 7395 | return |
| 7396 | |
| 7397 | def register_Ns3TimeValue_methods(root_module, cls): |
| 7398 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor] |
| 7399 | cls.add_constructor([]) |
| 7400 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor] |
| 7401 | cls.add_constructor([param('ns3::TimeValue const &', 'arg0')]) |
| 7402 | ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor] |
| 7403 | cls.add_constructor([param('ns3::Time const &', 'value')]) |
| 7404 | ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function] |
| 7405 | cls.add_method('Copy', |
| 7406 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7407 | [], |
| 7408 | is_const=True, is_virtual=True) |
| 7409 | ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7410 | cls.add_method('DeserializeFromString', |
| 7411 | 'bool', |
| 7412 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7413 | is_virtual=True) |
| 7414 | ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function] |
| 7415 | cls.add_method('Get', |
| 7416 | 'ns3::Time', |
| 7417 | [], |
| 7418 | is_const=True) |
| 7419 | ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7420 | cls.add_method('SerializeToString', |
| 7421 | 'std::string', |
| 7422 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7423 | is_const=True, is_virtual=True) |
| 7424 | ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function] |
| 7425 | cls.add_method('Set', |
| 7426 | 'void', |
| 7427 | [param('ns3::Time const &', 'value')]) |
| 7428 | return |
| 7429 | |
| 7430 | def register_Ns3TypeIdChecker_methods(root_module, cls): |
| 7431 | ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor] |
| 7432 | cls.add_constructor([]) |
| 7433 | ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor] |
| 7434 | cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')]) |
| 7435 | return |
| 7436 | |
| 7437 | def register_Ns3TypeIdValue_methods(root_module, cls): |
| 7438 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor] |
| 7439 | cls.add_constructor([]) |
| 7440 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor] |
| 7441 | cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')]) |
| 7442 | ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor] |
| 7443 | cls.add_constructor([param('ns3::TypeId const &', 'value')]) |
| 7444 | ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function] |
| 7445 | cls.add_method('Copy', |
| 7446 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7447 | [], |
| 7448 | is_const=True, is_virtual=True) |
| 7449 | ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7450 | cls.add_method('DeserializeFromString', |
| 7451 | 'bool', |
| 7452 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7453 | is_virtual=True) |
| 7454 | ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function] |
| 7455 | cls.add_method('Get', |
| 7456 | 'ns3::TypeId', |
| 7457 | [], |
| 7458 | is_const=True) |
| 7459 | ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7460 | cls.add_method('SerializeToString', |
| 7461 | 'std::string', |
| 7462 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7463 | is_const=True, is_virtual=True) |
| 7464 | ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function] |
| 7465 | cls.add_method('Set', |
| 7466 | 'void', |
| 7467 | [param('ns3::TypeId const &', 'value')]) |
| 7468 | return |
| 7469 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7470 | def register_Ns3UintegerValue_methods(root_module, cls): |
| 7471 | ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor] |
| 7472 | cls.add_constructor([]) |
| 7473 | ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor] |
| 7474 | cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')]) |
| 7475 | ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor] |
| 7476 | cls.add_constructor([param('uint64_t const &', 'value')]) |
| 7477 | ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function] |
| 7478 | cls.add_method('Copy', |
| 7479 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7480 | [], |
| 7481 | is_const=True, is_virtual=True) |
| 7482 | ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7483 | cls.add_method('DeserializeFromString', |
| 7484 | 'bool', |
| 7485 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7486 | is_virtual=True) |
| 7487 | ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function] |
| 7488 | cls.add_method('Get', |
| 7489 | 'uint64_t', |
| 7490 | [], |
| 7491 | is_const=True) |
| 7492 | ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7493 | cls.add_method('SerializeToString', |
| 7494 | 'std::string', |
| 7495 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7496 | is_const=True, is_virtual=True) |
| 7497 | ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function] |
| 7498 | cls.add_method('Set', |
| 7499 | 'void', |
| 7500 | [param('uint64_t const &', 'value')]) |
| 7501 | return |
| 7502 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 7503 | def register_Ns3AddressChecker_methods(root_module, cls): |
| 7504 | ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor] |
| 7505 | cls.add_constructor([]) |
| 7506 | ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor] |
| 7507 | cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')]) |
| 7508 | return |
| 7509 | |
| 7510 | def register_Ns3AddressValue_methods(root_module, cls): |
| 7511 | ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor] |
| 7512 | cls.add_constructor([]) |
| 7513 | ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor] |
| 7514 | cls.add_constructor([param('ns3::AddressValue const &', 'arg0')]) |
| 7515 | ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor] |
| 7516 | cls.add_constructor([param('ns3::Address const &', 'value')]) |
| 7517 | ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function] |
| 7518 | cls.add_method('Copy', |
| 7519 | 'ns3::Ptr< ns3::AttributeValue >', |
| 7520 | [], |
| 7521 | is_const=True, is_virtual=True) |
| 7522 | ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
| 7523 | cls.add_method('DeserializeFromString', |
| 7524 | 'bool', |
| 7525 | [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7526 | is_virtual=True) |
| 7527 | ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function] |
| 7528 | cls.add_method('Get', |
| 7529 | 'ns3::Address', |
| 7530 | [], |
| 7531 | is_const=True) |
| 7532 | ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
| 7533 | cls.add_method('SerializeToString', |
| 7534 | 'std::string', |
| 7535 | [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
| 7536 | is_const=True, is_virtual=True) |
| 7537 | ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function] |
| 7538 | cls.add_method('Set', |
| 7539 | 'void', |
| 7540 | [param('ns3::Address const &', 'value')]) |
| 7541 | return |
| 7542 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7543 | def register_Ns3CcnbParserBlock_methods(root_module, cls): |
| 7544 | ## ccnb-parser-block.h (module 'NDNabstraction'): ns3::CcnbParser::Block::Block() [constructor] |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 7545 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7546 | ## ccnb-parser-block.h (module 'NDNabstraction'): ns3::CcnbParser::Block::Block(ns3::CcnbParser::Block const & arg0) [copy constructor] |
| 7547 | cls.add_constructor([param('ns3::CcnbParser::Block const &', 'arg0')]) |
| 7548 | ## ccnb-parser-block.h (module 'NDNabstraction'): static ns3::Ptr<ns3::CcnbParser::Block> ns3::CcnbParser::Block::ParseBlock(ns3::Buffer::Iterator & start) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7549 | cls.add_method('ParseBlock', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7550 | 'ns3::Ptr< ns3::CcnbParser::Block >', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7551 | [param('ns3::Buffer::Iterator &', 'start')], |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 7552 | is_static=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7553 | ## ccnb-parser-block.h (module 'NDNabstraction'): void ns3::CcnbParser::Block::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7554 | cls.add_method('accept', |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 7555 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7556 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7557 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7558 | ## ccnb-parser-block.h (module 'NDNabstraction'): void ns3::CcnbParser::Block::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7559 | cls.add_method('accept', |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 7560 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7561 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7562 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7563 | ## ccnb-parser-block.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Block::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7564 | cls.add_method('accept', |
| 7565 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7566 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7567 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7568 | ## ccnb-parser-block.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Block::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7569 | cls.add_method('accept', |
| 7570 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7571 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7572 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 7573 | return |
| 7574 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7575 | def register_Ns3CcnbParserCcnbDecodingException_methods(root_module, cls): |
| 7576 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser::CcnbDecodingException::CcnbDecodingException() [constructor] |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 7577 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7578 | ## ccnb-parser-common.h (module 'NDNabstraction'): ns3::CcnbParser::CcnbDecodingException::CcnbDecodingException(ns3::CcnbParser::CcnbDecodingException const & arg0) [copy constructor] |
| 7579 | cls.add_constructor([param('ns3::CcnbParser::CcnbDecodingException const &', 'arg0')]) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 7580 | return |
| 7581 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7582 | def register_Ns3CcnbParserExt_methods(root_module, cls): |
| 7583 | ## ccnb-parser-ext.h (module 'NDNabstraction'): ns3::CcnbParser::Ext::Ext(ns3::CcnbParser::Ext const & arg0) [copy constructor] |
| 7584 | cls.add_constructor([param('ns3::CcnbParser::Ext const &', 'arg0')]) |
| 7585 | ## ccnb-parser-ext.h (module 'NDNabstraction'): ns3::CcnbParser::Ext::Ext(ns3::Buffer::Iterator & start, uint32_t extSubtype) [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7586 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'extSubtype')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7587 | ## ccnb-parser-ext.h (module 'NDNabstraction'): void ns3::CcnbParser::Ext::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7588 | cls.add_method('accept', |
| 7589 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7590 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7591 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7592 | ## ccnb-parser-ext.h (module 'NDNabstraction'): void ns3::CcnbParser::Ext::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7593 | cls.add_method('accept', |
| 7594 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7595 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7596 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7597 | ## ccnb-parser-ext.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Ext::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7598 | cls.add_method('accept', |
| 7599 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7600 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7601 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7602 | ## ccnb-parser-ext.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Ext::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7603 | cls.add_method('accept', |
| 7604 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7605 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7606 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7607 | ## ccnb-parser-ext.h (module 'NDNabstraction'): ns3::CcnbParser::Ext::m_extSubtype [variable] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7608 | cls.add_instance_attribute('m_extSubtype', 'uint64_t', is_const=False) |
| 7609 | return |
| 7610 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7611 | def register_Ns3CcnbParserNoArguVisitor_methods(root_module, cls): |
| 7612 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguVisitor::NoArguVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7613 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7614 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguVisitor::NoArguVisitor(ns3::CcnbParser::NoArguVisitor const & arg0) [copy constructor] |
| 7615 | cls.add_constructor([param('ns3::CcnbParser::NoArguVisitor const &', 'arg0')]) |
| 7616 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Blob & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7617 | cls.add_method('visit', |
| 7618 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7619 | [param('ns3::CcnbParser::Blob &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7620 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7621 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Udata & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7622 | cls.add_method('visit', |
| 7623 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7624 | [param('ns3::CcnbParser::Udata &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7625 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7626 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Tag & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7627 | cls.add_method('visit', |
| 7628 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7629 | [param('ns3::CcnbParser::Tag &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7630 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7631 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Attr & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7632 | cls.add_method('visit', |
| 7633 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7634 | [param('ns3::CcnbParser::Attr &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7635 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7636 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Dtag & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7637 | cls.add_method('visit', |
| 7638 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7639 | [param('ns3::CcnbParser::Dtag &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7640 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7641 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Dattr & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7642 | cls.add_method('visit', |
| 7643 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7644 | [param('ns3::CcnbParser::Dattr &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7645 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7646 | ## ccnb-parser-no-argu-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguVisitor::visit(ns3::CcnbParser::Ext & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7647 | cls.add_method('visit', |
| 7648 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7649 | [param('ns3::CcnbParser::Ext &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7650 | is_pure_virtual=True, is_virtual=True) |
| 7651 | return |
| 7652 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7653 | def register_Ns3CcnbParserUdata_methods(root_module, cls): |
| 7654 | ## ccnb-parser-udata.h (module 'NDNabstraction'): ns3::CcnbParser::Udata::Udata(ns3::CcnbParser::Udata const & arg0) [copy constructor] |
| 7655 | cls.add_constructor([param('ns3::CcnbParser::Udata const &', 'arg0')]) |
| 7656 | ## ccnb-parser-udata.h (module 'NDNabstraction'): ns3::CcnbParser::Udata::Udata(ns3::Buffer::Iterator & start, uint32_t length) [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7657 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7658 | ## ccnb-parser-udata.h (module 'NDNabstraction'): void ns3::CcnbParser::Udata::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7659 | cls.add_method('accept', |
| 7660 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7661 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7662 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7663 | ## ccnb-parser-udata.h (module 'NDNabstraction'): void ns3::CcnbParser::Udata::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7664 | cls.add_method('accept', |
| 7665 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7666 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7667 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7668 | ## ccnb-parser-udata.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Udata::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7669 | cls.add_method('accept', |
| 7670 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7671 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7672 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7673 | ## ccnb-parser-udata.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Udata::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7674 | cls.add_method('accept', |
| 7675 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7676 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7677 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7678 | ## ccnb-parser-udata.h (module 'NDNabstraction'): ns3::CcnbParser::Udata::m_udata [variable] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7679 | cls.add_instance_attribute('m_udata', 'std::string', is_const=False) |
| 7680 | return |
| 7681 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7682 | def register_Ns3CcnbParserVisitor_methods(root_module, cls): |
| 7683 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::Visitor::Visitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7684 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7685 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::Visitor::Visitor(ns3::CcnbParser::Visitor const & arg0) [copy constructor] |
| 7686 | cls.add_constructor([param('ns3::CcnbParser::Visitor const &', 'arg0')]) |
| 7687 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Blob & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7688 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7689 | 'boost::any', |
| 7690 | [param('ns3::CcnbParser::Blob &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7691 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7692 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Udata & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7693 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7694 | 'boost::any', |
| 7695 | [param('ns3::CcnbParser::Udata &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7696 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7697 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Tag & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7698 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7699 | 'boost::any', |
| 7700 | [param('ns3::CcnbParser::Tag &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7701 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7702 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Attr & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7703 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7704 | 'boost::any', |
| 7705 | [param('ns3::CcnbParser::Attr &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7706 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7707 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Dtag & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7708 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7709 | 'boost::any', |
| 7710 | [param('ns3::CcnbParser::Dtag &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7711 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7712 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Dattr & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7713 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7714 | 'boost::any', |
| 7715 | [param('ns3::CcnbParser::Dattr &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7716 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7717 | ## ccnb-parser-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Visitor::visit(ns3::CcnbParser::Ext & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7718 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7719 | 'boost::any', |
| 7720 | [param('ns3::CcnbParser::Ext &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7721 | is_pure_virtual=True, is_virtual=True) |
| 7722 | return |
| 7723 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7724 | def register_Ns3CcnbParserVoidNoArguVisitor_methods(root_module, cls): |
| 7725 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguVisitor::VoidNoArguVisitor() [constructor] |
| 7726 | cls.add_constructor([]) |
| 7727 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguVisitor::VoidNoArguVisitor(ns3::CcnbParser::VoidNoArguVisitor const & arg0) [copy constructor] |
| 7728 | cls.add_constructor([param('ns3::CcnbParser::VoidNoArguVisitor const &', 'arg0')]) |
| 7729 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Blob & arg0) [member function] |
| 7730 | cls.add_method('visit', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7731 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7732 | [param('ns3::CcnbParser::Blob &', 'arg0')], |
| 7733 | is_pure_virtual=True, is_virtual=True) |
| 7734 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Udata & arg0) [member function] |
| 7735 | cls.add_method('visit', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7736 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7737 | [param('ns3::CcnbParser::Udata &', 'arg0')], |
| 7738 | is_pure_virtual=True, is_virtual=True) |
| 7739 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Tag & arg0) [member function] |
| 7740 | cls.add_method('visit', |
| 7741 | 'void', |
| 7742 | [param('ns3::CcnbParser::Tag &', 'arg0')], |
| 7743 | is_pure_virtual=True, is_virtual=True) |
| 7744 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Attr & arg0) [member function] |
| 7745 | cls.add_method('visit', |
| 7746 | 'void', |
| 7747 | [param('ns3::CcnbParser::Attr &', 'arg0')], |
| 7748 | is_pure_virtual=True, is_virtual=True) |
| 7749 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Dtag & arg0) [member function] |
| 7750 | cls.add_method('visit', |
| 7751 | 'void', |
| 7752 | [param('ns3::CcnbParser::Dtag &', 'arg0')], |
| 7753 | is_pure_virtual=True, is_virtual=True) |
| 7754 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Dattr & arg0) [member function] |
| 7755 | cls.add_method('visit', |
| 7756 | 'void', |
| 7757 | [param('ns3::CcnbParser::Dattr &', 'arg0')], |
| 7758 | is_pure_virtual=True, is_virtual=True) |
| 7759 | ## ccnb-parser-void-no-argu-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguVisitor::visit(ns3::CcnbParser::Ext & arg0) [member function] |
| 7760 | cls.add_method('visit', |
| 7761 | 'void', |
| 7762 | [param('ns3::CcnbParser::Ext &', 'arg0')], |
| 7763 | is_pure_virtual=True, is_virtual=True) |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7764 | return |
| 7765 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7766 | def register_Ns3CcnbParserVoidVisitor_methods(root_module, cls): |
| 7767 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidVisitor::VoidVisitor() [constructor] |
| 7768 | cls.add_constructor([]) |
| 7769 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidVisitor::VoidVisitor(ns3::CcnbParser::VoidVisitor const & arg0) [copy constructor] |
| 7770 | cls.add_constructor([param('ns3::CcnbParser::VoidVisitor const &', 'arg0')]) |
| 7771 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Blob & arg0, boost::any arg1) [member function] |
| 7772 | cls.add_method('visit', |
| 7773 | 'void', |
| 7774 | [param('ns3::CcnbParser::Blob &', 'arg0'), param('boost::any', 'arg1')], |
| 7775 | is_pure_virtual=True, is_virtual=True) |
| 7776 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Udata & arg0, boost::any arg1) [member function] |
| 7777 | cls.add_method('visit', |
| 7778 | 'void', |
| 7779 | [param('ns3::CcnbParser::Udata &', 'arg0'), param('boost::any', 'arg1')], |
| 7780 | is_pure_virtual=True, is_virtual=True) |
| 7781 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Tag & arg0, boost::any arg1) [member function] |
| 7782 | cls.add_method('visit', |
| 7783 | 'void', |
| 7784 | [param('ns3::CcnbParser::Tag &', 'arg0'), param('boost::any', 'arg1')], |
| 7785 | is_pure_virtual=True, is_virtual=True) |
| 7786 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Attr & arg0, boost::any arg1) [member function] |
| 7787 | cls.add_method('visit', |
| 7788 | 'void', |
| 7789 | [param('ns3::CcnbParser::Attr &', 'arg0'), param('boost::any', 'arg1')], |
| 7790 | is_pure_virtual=True, is_virtual=True) |
| 7791 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Dtag & arg0, boost::any arg1) [member function] |
| 7792 | cls.add_method('visit', |
| 7793 | 'void', |
| 7794 | [param('ns3::CcnbParser::Dtag &', 'arg0'), param('boost::any', 'arg1')], |
| 7795 | is_pure_virtual=True, is_virtual=True) |
| 7796 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Dattr & arg0, boost::any arg1) [member function] |
| 7797 | cls.add_method('visit', |
| 7798 | 'void', |
| 7799 | [param('ns3::CcnbParser::Dattr &', 'arg0'), param('boost::any', 'arg1')], |
| 7800 | is_pure_virtual=True, is_virtual=True) |
| 7801 | ## ccnb-parser-void-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidVisitor::visit(ns3::CcnbParser::Ext & arg0, boost::any arg1) [member function] |
| 7802 | cls.add_method('visit', |
| 7803 | 'void', |
| 7804 | [param('ns3::CcnbParser::Ext &', 'arg0'), param('boost::any', 'arg1')], |
| 7805 | is_pure_virtual=True, is_virtual=True) |
| 7806 | return |
| 7807 | |
| 7808 | def register_Ns3CcnbParserBaseAttr_methods(root_module, cls): |
| 7809 | ## ccnb-parser-base-attr.h (module 'NDNabstraction'): ns3::CcnbParser::BaseAttr::BaseAttr() [constructor] |
| 7810 | cls.add_constructor([]) |
| 7811 | ## ccnb-parser-base-attr.h (module 'NDNabstraction'): ns3::CcnbParser::BaseAttr::BaseAttr(ns3::CcnbParser::BaseAttr const & arg0) [copy constructor] |
| 7812 | cls.add_constructor([param('ns3::CcnbParser::BaseAttr const &', 'arg0')]) |
| 7813 | ## ccnb-parser-base-attr.h (module 'NDNabstraction'): ns3::CcnbParser::BaseAttr::m_value [variable] |
| 7814 | cls.add_instance_attribute('m_value', 'ns3::Ptr< ns3::CcnbParser::Udata >', is_const=False) |
| 7815 | return |
| 7816 | |
| 7817 | def register_Ns3CcnbParserBaseTag_methods(root_module, cls): |
| 7818 | ## ccnb-parser-base-tag.h (module 'NDNabstraction'): ns3::CcnbParser::BaseTag::BaseTag(ns3::CcnbParser::BaseTag const & arg0) [copy constructor] |
| 7819 | cls.add_constructor([param('ns3::CcnbParser::BaseTag const &', 'arg0')]) |
| 7820 | ## ccnb-parser-base-tag.h (module 'NDNabstraction'): ns3::CcnbParser::BaseTag::m_attrs [variable] |
| 7821 | cls.add_instance_attribute('m_attrs', 'std::list< ns3::Ptr< ns3::CcnbParser::Block > >', is_const=False) |
| 7822 | ## ccnb-parser-base-tag.h (module 'NDNabstraction'): ns3::CcnbParser::BaseTag::m_nestedTags [variable] |
| 7823 | cls.add_instance_attribute('m_nestedTags', 'std::list< ns3::Ptr< ns3::CcnbParser::Block > >', is_const=False) |
| 7824 | ## ccnb-parser-base-tag.h (module 'NDNabstraction'): ns3::CcnbParser::BaseTag::BaseTag() [constructor] |
| 7825 | cls.add_constructor([], |
| 7826 | visibility='protected') |
| 7827 | return |
| 7828 | |
| 7829 | def register_Ns3CcnbParserBlob_methods(root_module, cls): |
| 7830 | ## ccnb-parser-blob.h (module 'NDNabstraction'): ns3::CcnbParser::Blob::Blob(ns3::CcnbParser::Blob const & arg0) [copy constructor] |
| 7831 | cls.add_constructor([param('ns3::CcnbParser::Blob const &', 'arg0')]) |
| 7832 | ## ccnb-parser-blob.h (module 'NDNabstraction'): ns3::CcnbParser::Blob::Blob(ns3::Buffer::Iterator & start, uint32_t length) [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7833 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7834 | ## ccnb-parser-blob.h (module 'NDNabstraction'): void ns3::CcnbParser::Blob::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7835 | cls.add_method('accept', |
| 7836 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7837 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7838 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7839 | ## ccnb-parser-blob.h (module 'NDNabstraction'): void ns3::CcnbParser::Blob::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7840 | cls.add_method('accept', |
| 7841 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7842 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7843 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7844 | ## ccnb-parser-blob.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Blob::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7845 | cls.add_method('accept', |
| 7846 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7847 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7848 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7849 | ## ccnb-parser-blob.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Blob::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7850 | cls.add_method('accept', |
| 7851 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7852 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7853 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7854 | ## ccnb-parser-blob.h (module 'NDNabstraction'): ns3::CcnbParser::Blob::m_blob [variable] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7855 | cls.add_instance_attribute('m_blob', 'ns3::Buffer', is_const=False) |
| 7856 | return |
| 7857 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7858 | def register_Ns3CcnbParserDattr_methods(root_module, cls): |
| 7859 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): ns3::CcnbParser::Dattr::Dattr(ns3::CcnbParser::Dattr const & arg0) [copy constructor] |
| 7860 | cls.add_constructor([param('ns3::CcnbParser::Dattr const &', 'arg0')]) |
| 7861 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): ns3::CcnbParser::Dattr::Dattr(ns3::Buffer::Iterator & start, uint32_t dattr) [constructor] |
| 7862 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'dattr')]) |
| 7863 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): void ns3::CcnbParser::Dattr::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
| 7864 | cls.add_method('accept', |
| 7865 | 'void', |
| 7866 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
| 7867 | is_virtual=True) |
| 7868 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): void ns3::CcnbParser::Dattr::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
| 7869 | cls.add_method('accept', |
| 7870 | 'void', |
| 7871 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
| 7872 | is_virtual=True) |
| 7873 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Dattr::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
| 7874 | cls.add_method('accept', |
| 7875 | 'boost::any', |
| 7876 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
| 7877 | is_virtual=True) |
| 7878 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Dattr::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
| 7879 | cls.add_method('accept', |
| 7880 | 'boost::any', |
| 7881 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
| 7882 | is_virtual=True) |
| 7883 | ## ccnb-parser-dattr.h (module 'NDNabstraction'): ns3::CcnbParser::Dattr::m_dattr [variable] |
| 7884 | cls.add_instance_attribute('m_dattr', 'uint32_t', is_const=False) |
| 7885 | return |
| 7886 | |
| 7887 | def register_Ns3CcnbParserDepthFirstVisitor_methods(root_module, cls): |
| 7888 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::DepthFirstVisitor::DepthFirstVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7889 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7890 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::DepthFirstVisitor::DepthFirstVisitor(ns3::CcnbParser::DepthFirstVisitor const & arg0) [copy constructor] |
| 7891 | cls.add_constructor([param('ns3::CcnbParser::DepthFirstVisitor const &', 'arg0')]) |
| 7892 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Blob & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7893 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7894 | 'boost::any', |
| 7895 | [param('ns3::CcnbParser::Blob &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7896 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7897 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Udata & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7898 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7899 | 'boost::any', |
| 7900 | [param('ns3::CcnbParser::Udata &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7901 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7902 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Tag & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7903 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7904 | 'boost::any', |
| 7905 | [param('ns3::CcnbParser::Tag &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7906 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7907 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Attr & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7908 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7909 | 'boost::any', |
| 7910 | [param('ns3::CcnbParser::Attr &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7911 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7912 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Dtag & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7913 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7914 | 'boost::any', |
| 7915 | [param('ns3::CcnbParser::Dtag &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7916 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7917 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Dattr & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7918 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7919 | 'boost::any', |
| 7920 | [param('ns3::CcnbParser::Dattr &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7921 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7922 | ## ccnb-parser-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::DepthFirstVisitor::visit(ns3::CcnbParser::Ext & arg0, boost::any arg1) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7923 | cls.add_method('visit', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7924 | 'boost::any', |
| 7925 | [param('ns3::CcnbParser::Ext &', 'arg0'), param('boost::any', 'arg1')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7926 | is_virtual=True) |
| 7927 | return |
| 7928 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7929 | def register_Ns3CcnbParserDtag_methods(root_module, cls): |
| 7930 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): ns3::CcnbParser::Dtag::Dtag(ns3::CcnbParser::Dtag const & arg0) [copy constructor] |
| 7931 | cls.add_constructor([param('ns3::CcnbParser::Dtag const &', 'arg0')]) |
| 7932 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): ns3::CcnbParser::Dtag::Dtag(ns3::Buffer::Iterator & start, uint32_t dtag) [constructor] |
| 7933 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'dtag')]) |
| 7934 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): void ns3::CcnbParser::Dtag::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
| 7935 | cls.add_method('accept', |
| 7936 | 'void', |
| 7937 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
| 7938 | is_virtual=True) |
| 7939 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): void ns3::CcnbParser::Dtag::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
| 7940 | cls.add_method('accept', |
| 7941 | 'void', |
| 7942 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
| 7943 | is_virtual=True) |
| 7944 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Dtag::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
| 7945 | cls.add_method('accept', |
| 7946 | 'boost::any', |
| 7947 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
| 7948 | is_virtual=True) |
| 7949 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Dtag::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
| 7950 | cls.add_method('accept', |
| 7951 | 'boost::any', |
| 7952 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
| 7953 | is_virtual=True) |
| 7954 | ## ccnb-parser-dtag.h (module 'NDNabstraction'): ns3::CcnbParser::Dtag::m_dtag [variable] |
| 7955 | cls.add_instance_attribute('m_dtag', 'uint32_t', is_const=False) |
| 7956 | return |
| 7957 | |
| 7958 | def register_Ns3CcnbParserNoArguDepthFirstVisitor_methods(root_module, cls): |
| 7959 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguDepthFirstVisitor::NoArguDepthFirstVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7960 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7961 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NoArguDepthFirstVisitor::NoArguDepthFirstVisitor(ns3::CcnbParser::NoArguDepthFirstVisitor const & arg0) [copy constructor] |
| 7962 | cls.add_constructor([param('ns3::CcnbParser::NoArguDepthFirstVisitor const &', 'arg0')]) |
| 7963 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Blob & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7964 | cls.add_method('visit', |
| 7965 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7966 | [param('ns3::CcnbParser::Blob &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7967 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7968 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Udata & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7969 | cls.add_method('visit', |
| 7970 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7971 | [param('ns3::CcnbParser::Udata &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7972 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7973 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Tag & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7974 | cls.add_method('visit', |
| 7975 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7976 | [param('ns3::CcnbParser::Tag &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7977 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7978 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Attr & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7979 | cls.add_method('visit', |
| 7980 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7981 | [param('ns3::CcnbParser::Attr &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7982 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7983 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Dtag & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7984 | cls.add_method('visit', |
| 7985 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7986 | [param('ns3::CcnbParser::Dtag &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7987 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7988 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Dattr & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7989 | cls.add_method('visit', |
| 7990 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7991 | [param('ns3::CcnbParser::Dattr &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7992 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7993 | ## ccnb-parser-no-argu-depth-first-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NoArguDepthFirstVisitor::visit(ns3::CcnbParser::Ext & arg0) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7994 | cls.add_method('visit', |
| 7995 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 7996 | [param('ns3::CcnbParser::Ext &', 'arg0')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 7997 | is_virtual=True) |
| 7998 | return |
| 7999 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8000 | def register_Ns3CcnbParserNonNegativeIntegerVisitor_methods(root_module, cls): |
| 8001 | ## ccnb-parser-non-negative-integer-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonNegativeIntegerVisitor::NonNegativeIntegerVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8002 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8003 | ## ccnb-parser-non-negative-integer-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonNegativeIntegerVisitor::NonNegativeIntegerVisitor(ns3::CcnbParser::NonNegativeIntegerVisitor const & arg0) [copy constructor] |
| 8004 | cls.add_constructor([param('ns3::CcnbParser::NonNegativeIntegerVisitor const &', 'arg0')]) |
| 8005 | ## ccnb-parser-non-negative-integer-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NonNegativeIntegerVisitor::visit(ns3::CcnbParser::Blob & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8006 | cls.add_method('visit', |
| 8007 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8008 | [param('ns3::CcnbParser::Blob &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8009 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8010 | ## ccnb-parser-non-negative-integer-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NonNegativeIntegerVisitor::visit(ns3::CcnbParser::Udata & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8011 | cls.add_method('visit', |
| 8012 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8013 | [param('ns3::CcnbParser::Udata &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8014 | is_virtual=True) |
| 8015 | return |
| 8016 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8017 | def register_Ns3CcnbParserNonceVisitor_methods(root_module, cls): |
| 8018 | ## ccnb-parser-nonce-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonceVisitor::NonceVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8019 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8020 | ## ccnb-parser-nonce-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NonceVisitor::NonceVisitor(ns3::CcnbParser::NonceVisitor const & arg0) [copy constructor] |
| 8021 | cls.add_constructor([param('ns3::CcnbParser::NonceVisitor const &', 'arg0')]) |
| 8022 | ## ccnb-parser-nonce-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NonceVisitor::visit(ns3::CcnbParser::Blob & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8023 | cls.add_method('visit', |
| 8024 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8025 | [param('ns3::CcnbParser::Blob &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8026 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8027 | ## ccnb-parser-nonce-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::NonceVisitor::visit(ns3::CcnbParser::Udata & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8028 | cls.add_method('visit', |
| 8029 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8030 | [param('ns3::CcnbParser::Udata &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8031 | is_virtual=True) |
| 8032 | return |
| 8033 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8034 | def register_Ns3CcnbParserStringVisitor_methods(root_module, cls): |
| 8035 | ## ccnb-parser-string-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::StringVisitor::StringVisitor() [constructor] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8036 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8037 | ## ccnb-parser-string-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::StringVisitor::StringVisitor(ns3::CcnbParser::StringVisitor const & arg0) [copy constructor] |
| 8038 | cls.add_constructor([param('ns3::CcnbParser::StringVisitor const &', 'arg0')]) |
| 8039 | ## ccnb-parser-string-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::StringVisitor::visit(ns3::CcnbParser::Blob & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8040 | cls.add_method('visit', |
| 8041 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8042 | [param('ns3::CcnbParser::Blob &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8043 | is_virtual=True) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8044 | ## ccnb-parser-string-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::StringVisitor::visit(ns3::CcnbParser::Udata & n) [member function] |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8045 | cls.add_method('visit', |
| 8046 | 'boost::any', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8047 | [param('ns3::CcnbParser::Udata &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8048 | is_virtual=True) |
| 8049 | return |
| 8050 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8051 | def register_Ns3CcnbParserTag_methods(root_module, cls): |
| 8052 | ## ccnb-parser-tag.h (module 'NDNabstraction'): ns3::CcnbParser::Tag::Tag(ns3::CcnbParser::Tag const & arg0) [copy constructor] |
| 8053 | cls.add_constructor([param('ns3::CcnbParser::Tag const &', 'arg0')]) |
| 8054 | ## ccnb-parser-tag.h (module 'NDNabstraction'): ns3::CcnbParser::Tag::Tag(ns3::Buffer::Iterator & start, uint32_t length) [constructor] |
| 8055 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')]) |
| 8056 | ## ccnb-parser-tag.h (module 'NDNabstraction'): void ns3::CcnbParser::Tag::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
| 8057 | cls.add_method('accept', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8058 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8059 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
| 8060 | is_virtual=True) |
| 8061 | ## ccnb-parser-tag.h (module 'NDNabstraction'): void ns3::CcnbParser::Tag::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
| 8062 | cls.add_method('accept', |
| 8063 | 'void', |
| 8064 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
| 8065 | is_virtual=True) |
| 8066 | ## ccnb-parser-tag.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Tag::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
| 8067 | cls.add_method('accept', |
| 8068 | 'boost::any', |
| 8069 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
| 8070 | is_virtual=True) |
| 8071 | ## ccnb-parser-tag.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Tag::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
| 8072 | cls.add_method('accept', |
| 8073 | 'boost::any', |
| 8074 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
| 8075 | is_virtual=True) |
| 8076 | ## ccnb-parser-tag.h (module 'NDNabstraction'): ns3::CcnbParser::Tag::m_tag [variable] |
| 8077 | cls.add_instance_attribute('m_tag', 'std::string', is_const=False) |
| 8078 | return |
| 8079 | |
| 8080 | def register_Ns3CcnbParserTimestampVisitor_methods(root_module, cls): |
| 8081 | ## ccnb-parser-timestamp-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::TimestampVisitor::TimestampVisitor() [constructor] |
| 8082 | cls.add_constructor([]) |
| 8083 | ## ccnb-parser-timestamp-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::TimestampVisitor::TimestampVisitor(ns3::CcnbParser::TimestampVisitor const & arg0) [copy constructor] |
| 8084 | cls.add_constructor([param('ns3::CcnbParser::TimestampVisitor const &', 'arg0')]) |
| 8085 | ## ccnb-parser-timestamp-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::TimestampVisitor::visit(ns3::CcnbParser::Blob & n) [member function] |
| 8086 | cls.add_method('visit', |
| 8087 | 'boost::any', |
| 8088 | [param('ns3::CcnbParser::Blob &', 'n')], |
| 8089 | is_virtual=True) |
| 8090 | ## ccnb-parser-timestamp-visitor.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::TimestampVisitor::visit(ns3::CcnbParser::Udata & n) [member function] |
| 8091 | cls.add_method('visit', |
| 8092 | 'boost::any', |
| 8093 | [param('ns3::CcnbParser::Udata &', 'n')], |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8094 | is_virtual=True) |
| 8095 | return |
| 8096 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8097 | def register_Ns3CcnbParserVoidDepthFirstVisitor_methods(root_module, cls): |
| 8098 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidDepthFirstVisitor::VoidDepthFirstVisitor() [constructor] |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 8099 | cls.add_constructor([]) |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8100 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidDepthFirstVisitor::VoidDepthFirstVisitor(ns3::CcnbParser::VoidDepthFirstVisitor const & arg0) [copy constructor] |
| 8101 | cls.add_constructor([param('ns3::CcnbParser::VoidDepthFirstVisitor const &', 'arg0')]) |
| 8102 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Blob & arg0, boost::any arg1) [member function] |
| 8103 | cls.add_method('visit', |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8104 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8105 | [param('ns3::CcnbParser::Blob &', 'arg0'), param('boost::any', 'arg1')], |
| 8106 | is_virtual=True) |
| 8107 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Udata & arg0, boost::any arg1) [member function] |
| 8108 | cls.add_method('visit', |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 8109 | 'void', |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8110 | [param('ns3::CcnbParser::Udata &', 'arg0'), param('boost::any', 'arg1')], |
| 8111 | is_virtual=True) |
| 8112 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Tag & arg0, boost::any arg1) [member function] |
| 8113 | cls.add_method('visit', |
| 8114 | 'void', |
| 8115 | [param('ns3::CcnbParser::Tag &', 'arg0'), param('boost::any', 'arg1')], |
| 8116 | is_virtual=True) |
| 8117 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Attr & arg0, boost::any arg1) [member function] |
| 8118 | cls.add_method('visit', |
| 8119 | 'void', |
| 8120 | [param('ns3::CcnbParser::Attr &', 'arg0'), param('boost::any', 'arg1')], |
| 8121 | is_virtual=True) |
| 8122 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Dtag & arg0, boost::any arg1) [member function] |
| 8123 | cls.add_method('visit', |
| 8124 | 'void', |
| 8125 | [param('ns3::CcnbParser::Dtag &', 'arg0'), param('boost::any', 'arg1')], |
| 8126 | is_virtual=True) |
| 8127 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Dattr & arg0, boost::any arg1) [member function] |
| 8128 | cls.add_method('visit', |
| 8129 | 'void', |
| 8130 | [param('ns3::CcnbParser::Dattr &', 'arg0'), param('boost::any', 'arg1')], |
| 8131 | is_virtual=True) |
| 8132 | ## ccnb-parser-void-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidDepthFirstVisitor::visit(ns3::CcnbParser::Ext & arg0, boost::any arg1) [member function] |
| 8133 | cls.add_method('visit', |
| 8134 | 'void', |
| 8135 | [param('ns3::CcnbParser::Ext &', 'arg0'), param('boost::any', 'arg1')], |
| 8136 | is_virtual=True) |
| 8137 | return |
| 8138 | |
| 8139 | def register_Ns3CcnbParserVoidNoArguDepthFirstVisitor_methods(root_module, cls): |
| 8140 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguDepthFirstVisitor::VoidNoArguDepthFirstVisitor() [constructor] |
| 8141 | cls.add_constructor([]) |
| 8142 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::VoidNoArguDepthFirstVisitor::VoidNoArguDepthFirstVisitor(ns3::CcnbParser::VoidNoArguDepthFirstVisitor const & arg0) [copy constructor] |
| 8143 | cls.add_constructor([param('ns3::CcnbParser::VoidNoArguDepthFirstVisitor const &', 'arg0')]) |
| 8144 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Blob & arg0) [member function] |
| 8145 | cls.add_method('visit', |
| 8146 | 'void', |
| 8147 | [param('ns3::CcnbParser::Blob &', 'arg0')], |
| 8148 | is_virtual=True) |
| 8149 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Udata & arg0) [member function] |
| 8150 | cls.add_method('visit', |
| 8151 | 'void', |
| 8152 | [param('ns3::CcnbParser::Udata &', 'arg0')], |
| 8153 | is_virtual=True) |
| 8154 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Tag & arg0) [member function] |
| 8155 | cls.add_method('visit', |
| 8156 | 'void', |
| 8157 | [param('ns3::CcnbParser::Tag &', 'arg0')], |
| 8158 | is_virtual=True) |
| 8159 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Attr & arg0) [member function] |
| 8160 | cls.add_method('visit', |
| 8161 | 'void', |
| 8162 | [param('ns3::CcnbParser::Attr &', 'arg0')], |
| 8163 | is_virtual=True) |
| 8164 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Dtag & arg0) [member function] |
| 8165 | cls.add_method('visit', |
| 8166 | 'void', |
| 8167 | [param('ns3::CcnbParser::Dtag &', 'arg0')], |
| 8168 | is_virtual=True) |
| 8169 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Dattr & arg0) [member function] |
| 8170 | cls.add_method('visit', |
| 8171 | 'void', |
| 8172 | [param('ns3::CcnbParser::Dattr &', 'arg0')], |
| 8173 | is_virtual=True) |
| 8174 | ## ccnb-parser-void-no-argu-depth-first-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::VoidNoArguDepthFirstVisitor::visit(ns3::CcnbParser::Ext & arg0) [member function] |
| 8175 | cls.add_method('visit', |
| 8176 | 'void', |
| 8177 | [param('ns3::CcnbParser::Ext &', 'arg0')], |
| 8178 | is_virtual=True) |
| 8179 | return |
| 8180 | |
| 8181 | def register_Ns3CcnbParserAttr_methods(root_module, cls): |
| 8182 | ## ccnb-parser-attr.h (module 'NDNabstraction'): ns3::CcnbParser::Attr::Attr(ns3::CcnbParser::Attr const & arg0) [copy constructor] |
| 8183 | cls.add_constructor([param('ns3::CcnbParser::Attr const &', 'arg0')]) |
| 8184 | ## ccnb-parser-attr.h (module 'NDNabstraction'): ns3::CcnbParser::Attr::Attr(ns3::Buffer::Iterator & start, uint32_t length) [constructor] |
| 8185 | cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')]) |
| 8186 | ## ccnb-parser-attr.h (module 'NDNabstraction'): void ns3::CcnbParser::Attr::accept(ns3::CcnbParser::VoidNoArguVisitor & v) [member function] |
| 8187 | cls.add_method('accept', |
| 8188 | 'void', |
| 8189 | [param('ns3::CcnbParser::VoidNoArguVisitor &', 'v')], |
| 8190 | is_virtual=True) |
| 8191 | ## ccnb-parser-attr.h (module 'NDNabstraction'): void ns3::CcnbParser::Attr::accept(ns3::CcnbParser::VoidVisitor & v, boost::any param) [member function] |
| 8192 | cls.add_method('accept', |
| 8193 | 'void', |
| 8194 | [param('ns3::CcnbParser::VoidVisitor &', 'v'), param('boost::any', 'param')], |
| 8195 | is_virtual=True) |
| 8196 | ## ccnb-parser-attr.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Attr::accept(ns3::CcnbParser::NoArguVisitor & v) [member function] |
| 8197 | cls.add_method('accept', |
| 8198 | 'boost::any', |
| 8199 | [param('ns3::CcnbParser::NoArguVisitor &', 'v')], |
| 8200 | is_virtual=True) |
| 8201 | ## ccnb-parser-attr.h (module 'NDNabstraction'): boost::any ns3::CcnbParser::Attr::accept(ns3::CcnbParser::Visitor & v, boost::any param) [member function] |
| 8202 | cls.add_method('accept', |
| 8203 | 'boost::any', |
| 8204 | [param('ns3::CcnbParser::Visitor &', 'v'), param('boost::any', 'param')], |
| 8205 | is_virtual=True) |
| 8206 | ## ccnb-parser-attr.h (module 'NDNabstraction'): ns3::CcnbParser::Attr::m_attr [variable] |
| 8207 | cls.add_instance_attribute('m_attr', 'std::string', is_const=False) |
| 8208 | return |
| 8209 | |
| 8210 | def register_Ns3CcnbParserContentObjectVisitor_methods(root_module, cls): |
| 8211 | ## ccnb-parser-content-object-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::ContentObjectVisitor::ContentObjectVisitor() [constructor] |
| 8212 | cls.add_constructor([]) |
| 8213 | ## ccnb-parser-content-object-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::ContentObjectVisitor::ContentObjectVisitor(ns3::CcnbParser::ContentObjectVisitor const & arg0) [copy constructor] |
| 8214 | cls.add_constructor([param('ns3::CcnbParser::ContentObjectVisitor const &', 'arg0')]) |
| 8215 | ## ccnb-parser-content-object-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::ContentObjectVisitor::visit(ns3::CcnbParser::Dtag & n, boost::any param) [member function] |
| 8216 | cls.add_method('visit', |
| 8217 | 'void', |
| 8218 | [param('ns3::CcnbParser::Dtag &', 'n'), param('boost::any', 'param')], |
| 8219 | is_virtual=True) |
| 8220 | return |
| 8221 | |
| 8222 | def register_Ns3CcnbParserInterestVisitor_methods(root_module, cls): |
| 8223 | ## ccnb-parser-interest-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::InterestVisitor::InterestVisitor() [constructor] |
| 8224 | cls.add_constructor([]) |
| 8225 | ## ccnb-parser-interest-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::InterestVisitor::InterestVisitor(ns3::CcnbParser::InterestVisitor const & arg0) [copy constructor] |
| 8226 | cls.add_constructor([param('ns3::CcnbParser::InterestVisitor const &', 'arg0')]) |
| 8227 | ## ccnb-parser-interest-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::InterestVisitor::visit(ns3::CcnbParser::Dtag & n, boost::any param) [member function] |
| 8228 | cls.add_method('visit', |
| 8229 | 'void', |
| 8230 | [param('ns3::CcnbParser::Dtag &', 'n'), param('boost::any', 'param')], |
| 8231 | is_virtual=True) |
| 8232 | return |
| 8233 | |
| 8234 | def register_Ns3CcnbParserNameComponentsVisitor_methods(root_module, cls): |
| 8235 | ## ccnb-parser-name-components-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NameComponentsVisitor::NameComponentsVisitor() [constructor] |
| 8236 | cls.add_constructor([]) |
| 8237 | ## ccnb-parser-name-components-visitor.h (module 'NDNabstraction'): ns3::CcnbParser::NameComponentsVisitor::NameComponentsVisitor(ns3::CcnbParser::NameComponentsVisitor const & arg0) [copy constructor] |
| 8238 | cls.add_constructor([param('ns3::CcnbParser::NameComponentsVisitor const &', 'arg0')]) |
| 8239 | ## ccnb-parser-name-components-visitor.h (module 'NDNabstraction'): void ns3::CcnbParser::NameComponentsVisitor::visit(ns3::CcnbParser::Dtag & n, boost::any param) [member function] |
| 8240 | cls.add_method('visit', |
| 8241 | 'void', |
| 8242 | [param('ns3::CcnbParser::Dtag &', 'n'), param('boost::any', 'param')], |
| 8243 | is_virtual=True) |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 8244 | return |
| 8245 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 8246 | def register_functions(root_module): |
| 8247 | module = root_module |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8248 | ## ccnx-name-components.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCcnxNameComponentsChecker() [free function] |
| 8249 | module.add_function('MakeCcnxNameComponentsChecker', |
| 8250 | 'ns3::Ptr< ns3::AttributeChecker const >', |
| 8251 | []) |
| 8252 | register_functions_ns3_CcnbParser(module.get_submodule('CcnbParser'), root_module) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 8253 | register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 8254 | register_functions_ns3_internal(module.get_submodule('internal'), root_module) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 8255 | return |
| 8256 | |
Alexander Afanasyev | 5769923 | 2011-08-30 12:04:00 -0700 | [diff] [blame] | 8257 | def register_functions_ns3_CcnbParser(module, root_module): |
Alexander Afanasyev | eface60 | 2011-08-17 17:50:12 -0700 | [diff] [blame] | 8258 | return |
| 8259 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 8260 | def register_functions_ns3_FatalImpl(module, root_module): |
| 8261 | return |
| 8262 | |
Ilya Moiseenko | c166cd3 | 2011-08-12 12:50:30 -0700 | [diff] [blame] | 8263 | def register_functions_ns3_internal(module, root_module): |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 8264 | return |
| 8265 | |
| 8266 | def main(): |
| 8267 | out = FileCodeSink(sys.stdout) |
| 8268 | root_module = module_init() |
| 8269 | register_types(root_module) |
| 8270 | register_methods(root_module) |
| 8271 | register_functions(root_module) |
| 8272 | root_module.generate(out) |
| 8273 | |
| 8274 | if __name__ == '__main__': |
| 8275 | main() |
| 8276 | |