2008-07-08 10:43:58 -07:00
from pybindgen import Module , FileCodeSink , write_preamble , param , retval
def register_types ( module ) :
root_module = module . get_root ( )
## random-variable.h: ns3::RandomVariable [class]
module . add_class ( ' RandomVariable ' )
## random-variable.h: ns3::TriangularVariable [class]
module . add_class ( ' TriangularVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## global-value.h: ns3::GlobalValue [class]
module . add_class ( ' GlobalValue ' )
## ref-count-base.h: ns3::RefCountBase [class]
module . add_class ( ' RefCountBase ' , incref_method = ' Ref ' , automatic_type_narrowing = True , decref_method = ' Unref ' , peekref_method = ' GetReferenceCount ' )
## type-id.h: ns3::TypeId [class]
module . add_class ( ' TypeId ' )
## type-id.h: ns3::TypeId::AttributeFlag [enumeration]
module . add_enum ( ' AttributeFlag ' , [ ' ATTR_GET ' , ' ATTR_SET ' , ' ATTR_CONSTRUCT ' , ' ATTR_SGC ' ] , outer_class = root_module [ ' ns3::TypeId ' ] )
## type-id.h: ns3::TypeId::AttributeInfo [struct]
module . add_class ( ' AttributeInfo ' , outer_class = root_module [ ' ns3::TypeId ' ] )
## system-wall-clock-ms.h: ns3::SystemWallClockMs [class]
module . add_class ( ' SystemWallClockMs ' )
## callback.h: ns3::CallbackImplBase [class]
module . add_class ( ' CallbackImplBase ' , incref_method = ' Ref ' , allow_subclassing = True , decref_method = ' Unref ' , peekref_method = ' GetReferenceCount ' )
## trace-source-accessor.h: ns3::TraceSourceAccessor [class]
module . add_class ( ' TraceSourceAccessor ' , allow_subclassing = True )
## attribute.h: ns3::AttributeChecker [class]
module . add_class ( ' AttributeChecker ' , incref_method = ' Ref ' , allow_subclassing = False , automatic_type_narrowing = True , decref_method = ' Unref ' , parent = root_module [ ' ns3::RefCountBase ' ] )
## random-variable.h: ns3::RandomVariableChecker [class]
module . add_class ( ' RandomVariableChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
## random-variable.h: ns3::NormalVariable [class]
module . add_class ( ' NormalVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## object-factory.h: ns3::ObjectFactory [class]
module . add_class ( ' ObjectFactory ' )
## attribute.h: ns3::AttributeAccessor [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' AttributeAccessor ' , parent = root_module [ ' ns3::RefCountBase ' ] )
2008-07-08 10:43:58 -07:00
## random-variable.h: ns3::ParetoVariable [class]
module . add_class ( ' ParetoVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## random-variable.h: ns3::ConstantVariable [class]
module . add_class ( ' ConstantVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## random-variable.h: ns3::EmpiricalVariable [class]
module . add_class ( ' EmpiricalVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## enum.h: ns3::EnumChecker [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' EnumChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
2008-07-08 10:43:58 -07:00
## empty.h: ns3::empty [class]
module . add_class ( ' empty ' )
## object-base.h: ns3::ObjectBase [class]
module . add_class ( ' ObjectBase ' , allow_subclassing = True )
## command-line.h: ns3::CommandLine [class]
module . add_class ( ' CommandLine ' )
## int-to-type.h: ns3::IntToType<6> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 6 ' ] )
## int-to-type.h: ns3::IntToType<6>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 6 > ' ] )
## int-to-type.h: ns3::IntToType<5> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 5 ' ] )
## int-to-type.h: ns3::IntToType<5>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 5 > ' ] )
## int-to-type.h: ns3::IntToType<4> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 4 ' ] )
## int-to-type.h: ns3::IntToType<4>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 4 > ' ] )
## int-to-type.h: ns3::IntToType<3> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 3 ' ] )
## int-to-type.h: ns3::IntToType<3>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 3 > ' ] )
## int-to-type.h: ns3::IntToType<2> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 2 ' ] )
## int-to-type.h: ns3::IntToType<2>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 2 > ' ] )
## int-to-type.h: ns3::IntToType<1> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 1 ' ] )
## int-to-type.h: ns3::IntToType<1>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 1 > ' ] )
## int-to-type.h: ns3::IntToType<0> [struct]
module . add_class ( ' IntToType ' , template_parameters = [ ' 0 ' ] )
## int-to-type.h: ns3::IntToType<0>::v_e [enumeration]
module . add_enum ( ' v_e ' , [ ' value ' ] , outer_class = root_module [ ' ns3::IntToType< 0 > ' ] )
## rng-stream.h: ns3::RngStream [class]
module . add_class ( ' RngStream ' )
## random-variable.h: ns3::LogNormalVariable [class]
module . add_class ( ' LogNormalVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## random-variable.h: ns3::IntEmpiricalVariable [class]
module . add_class ( ' IntEmpiricalVariable ' , parent = root_module [ ' ns3::EmpiricalVariable ' ] )
## pointer.h: ns3::PointerChecker [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' PointerChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
2008-07-08 10:43:58 -07:00
## random-variable.h: ns3::WeibullVariable [class]
module . add_class ( ' WeibullVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## callback.h: ns3::CallbackBase [class]
module . add_class ( ' CallbackBase ' )
## random-variable.h: ns3::ExponentialVariable [class]
module . add_class ( ' ExponentialVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' ns3::Mac48Address ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' ns3::empty ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' ns3::Address const& ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' unsigned int ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::MobilityModel const> ' , ' ns3::empty ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::TimeUnit<1> ' , ' ns3::TimeUnit<1> ' , ' ns3::WifiPhy::State ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' ns3::WifiMode ' , ' ns3::WifiPreamble ' , ' unsigned char ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' double ' , ' ns3::empty ' , ' ns3::empty ' ] )
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' ns3::Ptr<ns3::Packet const> ' , ' double ' , ' ns3::WifiMode ' , ' ns3::WifiPreamble ' ] )
## traced-callback.h: ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty> [class]
module . add_class ( ' TracedCallback ' , template_parameters = [ ' unsigned int ' , ' unsigned int ' , ' ns3::empty ' , ' ns3::empty ' ] )
## random-variable.h: ns3::DeterministicVariable [class]
module . add_class ( ' DeterministicVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## attribute-list.h: ns3::AttributeList [class]
module . add_class ( ' AttributeList ' )
## attribute.h: ns3::AttributeValue [class]
module . add_class ( ' AttributeValue ' , incref_method = ' Ref ' , allow_subclassing = False , automatic_type_narrowing = True , decref_method = ' Unref ' , parent = root_module [ ' ns3::RefCountBase ' ] )
## random-variable.h: ns3::UniformVariable [class]
module . add_class ( ' UniformVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## object.h: ns3::Object [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' Object ' , incref_method = ' Ref ' , automatic_type_narrowing = True , decref_method = ' Unref ' , parent = root_module [ ' ns3::ObjectBase ' ] , peekref_method = ' GetReferenceCount ' )
2008-07-08 10:43:58 -07:00
## object.h: ns3::Object::AggregateIterator [class]
module . add_class ( ' AggregateIterator ' , outer_class = root_module [ ' ns3::Object ' ] )
## random-variable.h: ns3::SequentialVariable [class]
module . add_class ( ' SequentialVariable ' , parent = root_module [ ' ns3::RandomVariable ' ] )
## object-vector.h: ns3::ObjectVectorChecker [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' ObjectVectorChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
2008-07-08 10:43:58 -07:00
## string.h: ns3::StringChecker [class]
module . add_class ( ' StringChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
## object-vector.h: ns3::ObjectVectorValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' ObjectVectorValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## boolean.h: ns3::BooleanChecker [class]
module . add_class ( ' BooleanChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
## uinteger.h: ns3::UintegerValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' UintegerValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## object-vector.h: ns3::ObjectVectorAccessor [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' ObjectVectorAccessor ' , parent = root_module [ ' ns3::AttributeAccessor ' ] )
2008-07-08 10:43:58 -07:00
## pointer.h: ns3::PointerValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' PointerValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## object-factory.h: ns3::ObjectFactoryChecker [class]
module . add_class ( ' ObjectFactoryChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
## type-id.h: ns3::TypeIdChecker [class]
module . add_class ( ' TypeIdChecker ' , parent = root_module [ ' ns3::AttributeChecker ' ] )
## double.h: ns3::DoubleValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' DoubleValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## type-id.h: ns3::TypeIdValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' TypeIdValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## enum.h: ns3::EnumValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' EnumValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## random-variable.h: ns3::RandomVariableValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' RandomVariableValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## object-factory.h: ns3::ObjectFactoryValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' ObjectFactoryValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## integer.h: ns3::IntegerValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' IntegerValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## boolean.h: ns3::BooleanValue [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' BooleanValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
## string.h: ns3::StringValue [class]
module . add_class ( ' StringValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
## attribute.h: ns3::EmptyAttributeValue [class]
module . add_class ( ' EmptyAttributeValue ' , parent = root_module [ ' ns3::AttributeValue ' ] )
2008-07-08 10:43:58 -07:00
## traced-value.h: ns3::TracedValue<unsigned int> [class]
module . add_class ( ' TracedValue ' , template_parameters = [ ' unsigned int ' ] )
## traced-value.h: ns3::TracedValue<unsigned int> [class]
root_module [ ' ns3::TracedValue< unsigned int > ' ] . implicitly_converts_to ( root_module [ ' ns3::IntegerValue ' ] )
## traced-value.h: ns3::TracedValue<unsigned int> [class]
root_module [ ' ns3::TracedValue< unsigned int > ' ] . implicitly_converts_to ( root_module [ ' ns3::UintegerValue ' ] )
## traced-value.h: ns3::TracedValue<unsigned int> [class]
root_module [ ' ns3::TracedValue< unsigned int > ' ] . implicitly_converts_to ( root_module [ ' ns3::BooleanValue ' ] )
## traced-value.h: ns3::TracedValue<unsigned int> [class]
root_module [ ' ns3::TracedValue< unsigned int > ' ] . implicitly_converts_to ( root_module [ ' ns3::EnumValue ' ] )
## Register a nested module for the namespace internal
nested_module = module . add_cpp_namespace ( ' internal ' )
register_types_ns3_internal ( nested_module )
## Register a nested module for the namespace TimeStepPrecision
nested_module = module . add_cpp_namespace ( ' TimeStepPrecision ' )
register_types_ns3_TimeStepPrecision ( nested_module )
## Register a nested module for the namespace Config
nested_module = module . add_cpp_namespace ( ' Config ' )
register_types_ns3_Config ( nested_module )
## Register a nested module for the namespace olsr
nested_module = module . add_cpp_namespace ( ' olsr ' )
register_types_ns3_olsr ( nested_module )
def register_types_ns3_internal ( module ) :
root_module = module . get_root ( )
def register_types_ns3_TimeStepPrecision ( module ) :
root_module = module . get_root ( )
def register_types_ns3_Config ( module ) :
root_module = module . get_root ( )
def register_types_ns3_olsr ( module ) :
root_module = module . get_root ( )
def register_methods ( root_module ) :
register_Ns3RandomVariable_methods ( root_module , root_module [ ' ns3::RandomVariable ' ] )
register_Ns3TriangularVariable_methods ( root_module , root_module [ ' ns3::TriangularVariable ' ] )
register_Ns3GlobalValue_methods ( root_module , root_module [ ' ns3::GlobalValue ' ] )
register_Ns3RefCountBase_methods ( root_module , root_module [ ' ns3::RefCountBase ' ] )
register_Ns3TypeId_methods ( root_module , root_module [ ' ns3::TypeId ' ] )
register_Ns3TypeIdAttributeInfo_methods ( root_module , root_module [ ' ns3::TypeId::AttributeInfo ' ] )
register_Ns3SystemWallClockMs_methods ( root_module , root_module [ ' ns3::SystemWallClockMs ' ] )
register_Ns3CallbackImplBase_methods ( root_module , root_module [ ' ns3::CallbackImplBase ' ] )
register_Ns3TraceSourceAccessor_methods ( root_module , root_module [ ' ns3::TraceSourceAccessor ' ] )
register_Ns3AttributeChecker_methods ( root_module , root_module [ ' ns3::AttributeChecker ' ] )
register_Ns3RandomVariableChecker_methods ( root_module , root_module [ ' ns3::RandomVariableChecker ' ] )
register_Ns3NormalVariable_methods ( root_module , root_module [ ' ns3::NormalVariable ' ] )
register_Ns3ObjectFactory_methods ( root_module , root_module [ ' ns3::ObjectFactory ' ] )
register_Ns3AttributeAccessor_methods ( root_module , root_module [ ' ns3::AttributeAccessor ' ] )
register_Ns3ParetoVariable_methods ( root_module , root_module [ ' ns3::ParetoVariable ' ] )
register_Ns3ConstantVariable_methods ( root_module , root_module [ ' ns3::ConstantVariable ' ] )
register_Ns3EmpiricalVariable_methods ( root_module , root_module [ ' ns3::EmpiricalVariable ' ] )
register_Ns3EnumChecker_methods ( root_module , root_module [ ' ns3::EnumChecker ' ] )
register_Ns3Empty_methods ( root_module , root_module [ ' ns3::empty ' ] )
register_Ns3ObjectBase_methods ( root_module , root_module [ ' ns3::ObjectBase ' ] )
register_Ns3CommandLine_methods ( root_module , root_module [ ' ns3::CommandLine ' ] )
register_Ns3IntToType__6_methods ( root_module , root_module [ ' ns3::IntToType< 6 > ' ] )
register_Ns3IntToType__5_methods ( root_module , root_module [ ' ns3::IntToType< 5 > ' ] )
register_Ns3IntToType__4_methods ( root_module , root_module [ ' ns3::IntToType< 4 > ' ] )
register_Ns3IntToType__3_methods ( root_module , root_module [ ' ns3::IntToType< 3 > ' ] )
register_Ns3IntToType__2_methods ( root_module , root_module [ ' ns3::IntToType< 2 > ' ] )
register_Ns3IntToType__1_methods ( root_module , root_module [ ' ns3::IntToType< 1 > ' ] )
register_Ns3IntToType__0_methods ( root_module , root_module [ ' ns3::IntToType< 0 > ' ] )
register_Ns3RngStream_methods ( root_module , root_module [ ' ns3::RngStream ' ] )
register_Ns3LogNormalVariable_methods ( root_module , root_module [ ' ns3::LogNormalVariable ' ] )
register_Ns3IntEmpiricalVariable_methods ( root_module , root_module [ ' ns3::IntEmpiricalVariable ' ] )
register_Ns3PointerChecker_methods ( root_module , root_module [ ' ns3::PointerChecker ' ] )
register_Ns3WeibullVariable_methods ( root_module , root_module [ ' ns3::WeibullVariable ' ] )
register_Ns3CallbackBase_methods ( root_module , root_module [ ' ns3::CallbackBase ' ] )
register_Ns3ExponentialVariable_methods ( root_module , root_module [ ' ns3::ExponentialVariable ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Mac48Address_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Empty_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Address_const__amp___Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Unsigned_int_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3MobilityModel_const__gt___Ns3Empty_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3TimeUnit__lt__1__gt___Ns3TimeUnit__lt__1__gt___Ns3WifiPhyState_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3WifiMode_Ns3WifiPreamble_Unsigned_char_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Double_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty > ' ] )
register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Double_Ns3WifiMode_Ns3WifiPreamble_methods ( root_module , root_module [ ' ns3::TracedCallback< ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble > ' ] )
register_Ns3TracedCallback__Unsigned_int_Unsigned_int_Ns3Empty_Ns3Empty_methods ( root_module , root_module [ ' ns3::TracedCallback< unsigned int, unsigned int, ns3::empty, ns3::empty > ' ] )
register_Ns3DeterministicVariable_methods ( root_module , root_module [ ' ns3::DeterministicVariable ' ] )
register_Ns3AttributeList_methods ( root_module , root_module [ ' ns3::AttributeList ' ] )
register_Ns3AttributeValue_methods ( root_module , root_module [ ' ns3::AttributeValue ' ] )
register_Ns3UniformVariable_methods ( root_module , root_module [ ' ns3::UniformVariable ' ] )
register_Ns3Object_methods ( root_module , root_module [ ' ns3::Object ' ] )
register_Ns3ObjectAggregateIterator_methods ( root_module , root_module [ ' ns3::Object::AggregateIterator ' ] )
register_Ns3SequentialVariable_methods ( root_module , root_module [ ' ns3::SequentialVariable ' ] )
register_Ns3ObjectVectorChecker_methods ( root_module , root_module [ ' ns3::ObjectVectorChecker ' ] )
register_Ns3StringChecker_methods ( root_module , root_module [ ' ns3::StringChecker ' ] )
register_Ns3ObjectVectorValue_methods ( root_module , root_module [ ' ns3::ObjectVectorValue ' ] )
register_Ns3BooleanChecker_methods ( root_module , root_module [ ' ns3::BooleanChecker ' ] )
register_Ns3UintegerValue_methods ( root_module , root_module [ ' ns3::UintegerValue ' ] )
register_Ns3ObjectVectorAccessor_methods ( root_module , root_module [ ' ns3::ObjectVectorAccessor ' ] )
register_Ns3PointerValue_methods ( root_module , root_module [ ' ns3::PointerValue ' ] )
register_Ns3ObjectFactoryChecker_methods ( root_module , root_module [ ' ns3::ObjectFactoryChecker ' ] )
register_Ns3TypeIdChecker_methods ( root_module , root_module [ ' ns3::TypeIdChecker ' ] )
register_Ns3DoubleValue_methods ( root_module , root_module [ ' ns3::DoubleValue ' ] )
register_Ns3TypeIdValue_methods ( root_module , root_module [ ' ns3::TypeIdValue ' ] )
register_Ns3EnumValue_methods ( root_module , root_module [ ' ns3::EnumValue ' ] )
register_Ns3RandomVariableValue_methods ( root_module , root_module [ ' ns3::RandomVariableValue ' ] )
register_Ns3ObjectFactoryValue_methods ( root_module , root_module [ ' ns3::ObjectFactoryValue ' ] )
register_Ns3IntegerValue_methods ( root_module , root_module [ ' ns3::IntegerValue ' ] )
register_Ns3BooleanValue_methods ( root_module , root_module [ ' ns3::BooleanValue ' ] )
2008-07-14 11:42:49 +01:00
register_Ns3StringValue_methods ( root_module , root_module [ ' ns3::StringValue ' ] )
register_Ns3EmptyAttributeValue_methods ( root_module , root_module [ ' ns3::EmptyAttributeValue ' ] )
2008-07-08 10:43:58 -07:00
register_Ns3TracedValue__Unsigned_int_methods ( root_module , root_module [ ' ns3::TracedValue< unsigned int > ' ] )
return
def register_Ns3RandomVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::RandomVariable::RandomVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::RandomVariable& ' , ' o ' , is_const = True ) ] , visibility = ' public ' )
## random-variable.h: uint32_t ns3::RandomVariable::GetInteger() const [member function]
cls . add_method ( ' GetInteger ' , ' uint32_t ' , [ ] , is_const = True )
## random-variable.h: void ns3::RandomVariable::GetSeed(uint32_t * seed) const [member function]
cls . add_method ( ' GetSeed ' , ' void ' , [ param ( ' uint32_t * ' , ' seed ' , direction = 2 , array_length = 6 ) ] , is_const = True )
## random-variable.h: double ns3::RandomVariable::GetValue() const [member function]
cls . add_method ( ' GetValue ' , ' double ' , [ ] , is_const = True )
## random-variable.h: static void ns3::RandomVariable::SetRunNumber(uint32_t n) [member function]
cls . add_method ( ' SetRunNumber ' , ' void ' , [ param ( ' uint32_t ' , ' n ' ) ] , is_static = True )
## random-variable.h: static void ns3::RandomVariable::UseDevRandom(bool udr=true) [member function]
cls . add_method ( ' UseDevRandom ' , ' void ' , [ param ( ' bool ' , ' udr ' , default_value = ' true ' ) ] , is_static = True )
## random-variable.h: static void ns3::RandomVariable::UseGlobalSeed(uint32_t s0, uint32_t s1, uint32_t s2, uint32_t s3, uint32_t s4, uint32_t s5) [member function]
cls . add_method ( ' UseGlobalSeed ' , ' void ' , [ param ( ' uint32_t ' , ' s0 ' ) , param ( ' uint32_t ' , ' s1 ' ) , param ( ' uint32_t ' , ' s2 ' ) , param ( ' uint32_t ' , ' s3 ' ) , param ( ' uint32_t ' , ' s4 ' ) , param ( ' uint32_t ' , ' s5 ' ) ] , is_static = True )
cls . add_output_stream_operator ( )
return
def register_Ns3TriangularVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::TriangularVariable::TriangularVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' s ' ) , param ( ' double ' , ' l ' ) , param ( ' double ' , ' mean ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::TriangularVariable::GetSingleValue(double s, double l, double mean) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' s ' ) , param ( ' double ' , ' l ' ) , param ( ' double ' , ' mean ' ) ] , is_static = True )
return
def register_Ns3GlobalValue_methods ( root_module , cls ) :
## global-value.h: ns3::GlobalValue::GlobalValue(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeChecker const> checker) [constructor]
cls . add_constructor ( [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' help ' ) , param ( ' ns3::AttributeValue& ' , ' initialValue ' , is_const = True ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , visibility = ' public ' )
## global-value.h: std::string ns3::GlobalValue::GetName() const [member function]
cls . add_method ( ' GetName ' , ' std::string ' , [ ] , is_const = True )
## global-value.h: std::string ns3::GlobalValue::GetHelp() const [member function]
cls . add_method ( ' GetHelp ' , ' std::string ' , [ ] , is_const = True )
## global-value.h: void ns3::GlobalValue::GetValue(ns3::AttributeValue & value) const [member function]
cls . add_method ( ' GetValue ' , ' void ' , [ param ( ' ns3::AttributeValue& ' , ' value ' ) ] , is_const = True )
## global-value.h: ns3::Ptr<ns3::AttributeChecker const> ns3::GlobalValue::GetChecker() const [member function]
cls . add_method ( ' GetChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] , is_const = True )
## global-value.h: bool ns3::GlobalValue::SetValue(ns3::AttributeValue const & value) [member function]
cls . add_method ( ' SetValue ' , ' bool ' , [ param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## global-value.h: static void ns3::GlobalValue::Bind(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' Bind ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_static = True )
## global-value.h: static bool ns3::GlobalValue::BindFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' BindFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_static = True )
## global-value.h: static __gnu_cxx::__normal_iterator<ns3::GlobalValue* const*,std::vector<ns3::GlobalValue*, std::allocator<ns3::GlobalValue*> > > ns3::GlobalValue::Begin() [member function]
cls . add_method ( ' Begin ' , ' __gnu_cxx::__normal_iterator< ns3::GlobalValue* const*, std::vector< ns3::GlobalValue*, std::allocator< ns3::GlobalValue* > > > ' , [ ] , is_static = True )
## global-value.h: static __gnu_cxx::__normal_iterator<ns3::GlobalValue* const*,std::vector<ns3::GlobalValue*, std::allocator<ns3::GlobalValue*> > > ns3::GlobalValue::End() [member function]
cls . add_method ( ' End ' , ' __gnu_cxx::__normal_iterator< ns3::GlobalValue* const*, std::vector< ns3::GlobalValue*, std::allocator< ns3::GlobalValue* > > > ' , [ ] , is_static = True )
return
def register_Ns3RefCountBase_methods ( root_module , cls ) :
## ref-count-base.h: ns3::RefCountBase::RefCountBase() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## ref-count-base.h: ns3::RefCountBase::RefCountBase(ns3::RefCountBase const & o) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::RefCountBase& ' , ' o ' , is_const = True ) ] , visibility = ' public ' )
return
def register_Ns3TypeId_methods ( root_module , cls ) :
## type-id.h: ns3::TypeId::TypeId(ns3::TypeId const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::TypeId& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## type-id.h: ns3::TypeId::TypeId(char const * name) [constructor]
cls . add_constructor ( [ param ( ' char * ' , ' name ' , transfer_ownership = False , is_const = True ) ] , visibility = ' public ' )
## type-id.h: ns3::TypeId::TypeId() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## type-id.h: 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]
cls . add_method ( ' AddAttribute ' , ' ns3::TypeId ' , [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' help ' ) , param ( ' ns3::AttributeValue& ' , ' initialValue ' , is_const = True ) , param ( ' ns3::Ptr< ns3::AttributeAccessor const > ' , ' accessor ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] )
## type-id.h: 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]
cls . add_method ( ' AddAttribute ' , ' ns3::TypeId ' , [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' help ' ) , param ( ' uint32_t ' , ' flags ' ) , param ( ' ns3::AttributeValue& ' , ' initialValue ' , is_const = True ) , param ( ' ns3::Ptr< ns3::AttributeAccessor const > ' , ' accessor ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] )
## type-id.h: ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
cls . add_method ( ' AddTraceSource ' , ' ns3::TypeId ' , [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' help ' ) , param ( ' ns3::Ptr< ns3::TraceSourceAccessor const > ' , ' accessor ' ) ] )
## type-id.h: ns3::Ptr<ns3::AttributeAccessor const> ns3::TypeId::GetAttributeAccessor(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeAccessor ' , ' ns3::Ptr< ns3::AttributeAccessor const > ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: ns3::Ptr<ns3::AttributeChecker const> ns3::TypeId::GetAttributeChecker(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: uint32_t ns3::TypeId::GetAttributeFlags(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeFlags ' , ' uint32_t ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeFullName ' , ' std::string ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetAttributeHelp(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeHelp ' , ' std::string ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: ns3::Ptr<ns3::AttributeValue const> ns3::TypeId::GetAttributeInitialValue(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeInitialValue ' , ' ns3::Ptr< ns3::AttributeValue const > ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: uint32_t ns3::TypeId::GetAttributeN() const [member function]
cls . add_method ( ' GetAttributeN ' , ' uint32_t ' , [ ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetAttributeName(uint32_t i) const [member function]
cls . add_method ( ' GetAttributeName ' , ' std::string ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: ns3::Callback<ns3::ObjectBase*,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::TypeId::GetConstructor() const [member function]
cls . add_method ( ' GetConstructor ' , ' ns3::Callback< ns3::ObjectBase*, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , [ ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetGroupName() const [member function]
cls . add_method ( ' GetGroupName ' , ' std::string ' , [ ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetName() const [member function]
cls . add_method ( ' GetName ' , ' std::string ' , [ ] , is_const = True )
## type-id.h: ns3::TypeId ns3::TypeId::GetParent() const [member function]
cls . add_method ( ' GetParent ' , ' ns3::TypeId ' , [ ] , is_const = True )
## type-id.h: static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
cls . add_method ( ' GetRegistered ' , ' ns3::TypeId ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_static = True )
## type-id.h: static uint32_t ns3::TypeId::GetRegisteredN() [member function]
cls . add_method ( ' GetRegisteredN ' , ' uint32_t ' , [ ] , is_static = True )
## type-id.h: ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::GetTraceSourceAccessor(uint32_t i) const [member function]
cls . add_method ( ' GetTraceSourceAccessor ' , ' ns3::Ptr< ns3::TraceSourceAccessor const > ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetTraceSourceHelp(uint32_t i) const [member function]
cls . add_method ( ' GetTraceSourceHelp ' , ' std::string ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
cls . add_method ( ' GetTraceSourceN ' , ' uint32_t ' , [ ] , is_const = True )
## type-id.h: std::string ns3::TypeId::GetTraceSourceName(uint32_t i) const [member function]
cls . add_method ( ' GetTraceSourceName ' , ' std::string ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## type-id.h: uint16_t ns3::TypeId::GetUid() const [member function]
cls . add_method ( ' GetUid ' , ' uint16_t ' , [ ] , is_const = True )
## type-id.h: bool ns3::TypeId::HasConstructor() const [member function]
cls . add_method ( ' HasConstructor ' , ' bool ' , [ ] , is_const = True )
## type-id.h: bool ns3::TypeId::HasParent() const [member function]
cls . add_method ( ' HasParent ' , ' bool ' , [ ] , is_const = True )
## type-id.h: ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
cls . add_method ( ' HideFromDocumentation ' , ' ns3::TypeId ' , [ ] )
## type-id.h: bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
cls . add_method ( ' IsChildOf ' , ' bool ' , [ param ( ' ns3::TypeId ' , ' other ' ) ] , is_const = True )
## type-id.h: bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInfo * info) const [member function]
cls . add_method ( ' LookupAttributeByName ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::TypeId::AttributeInfo * ' , ' info ' , transfer_ownership = False ) ] , is_const = True )
## type-id.h: static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
cls . add_method ( ' LookupByName ' , ' ns3::TypeId ' , [ param ( ' std::string ' , ' name ' ) ] , is_static = True )
## type-id.h: static bool ns3::TypeId::LookupByNameFailSafe(std::string name, ns3::TypeId * tid) [member function]
cls . add_method ( ' LookupByNameFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::TypeId * ' , ' tid ' , transfer_ownership = False ) ] , is_static = True )
## type-id.h: ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
cls . add_method ( ' LookupTraceSourceByName ' , ' ns3::Ptr< ns3::TraceSourceAccessor const > ' , [ param ( ' std::string ' , ' name ' ) ] , is_const = True )
## type-id.h: bool ns3::TypeId::MustHideFromDocumentation() const [member function]
cls . add_method ( ' MustHideFromDocumentation ' , ' bool ' , [ ] , is_const = True )
## type-id.h: ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
cls . add_method ( ' SetGroupName ' , ' ns3::TypeId ' , [ param ( ' std::string ' , ' groupName ' ) ] )
## type-id.h: ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
cls . add_method ( ' SetParent ' , ' ns3::TypeId ' , [ param ( ' ns3::TypeId ' , ' tid ' ) ] )
## type-id.h: void ns3::TypeId::SetUid(uint16_t tid) [member function]
cls . add_method ( ' SetUid ' , ' void ' , [ param ( ' uint16_t ' , ' tid ' ) ] )
cls . add_output_stream_operator ( )
return
def register_Ns3TypeIdAttributeInfo_methods ( root_module , cls ) :
## type-id.h: ns3::TypeId::AttributeInfo::accessor [variable]
cls . add_instance_attribute ( ' accessor ' , ' ns3::Ptr< ns3::AttributeAccessor const > ' , is_const = False )
## type-id.h: ns3::TypeId::AttributeInfo::initialValue [variable]
cls . add_instance_attribute ( ' initialValue ' , ' ns3::Ptr< ns3::AttributeValue const > ' , is_const = False )
## type-id.h: ns3::TypeId::AttributeInfo::flags [variable]
cls . add_instance_attribute ( ' flags ' , ' uint32_t ' , is_const = False )
## type-id.h: ns3::TypeId::AttributeInfo::checker [variable]
cls . add_instance_attribute ( ' checker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , is_const = False )
cls . add_constructor ( [ ] )
return
def register_Ns3SystemWallClockMs_methods ( root_module , cls ) :
## system-wall-clock-ms.h: ns3::SystemWallClockMs::SystemWallClockMs() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## system-wall-clock-ms.h: void ns3::SystemWallClockMs::Start() [member function]
cls . add_method ( ' Start ' , ' void ' , [ ] )
## system-wall-clock-ms.h: long long unsigned int ns3::SystemWallClockMs::End() [member function]
cls . add_method ( ' End ' , ' long long unsigned int ' , [ ] )
return
def register_Ns3CallbackImplBase_methods ( root_module , cls ) :
## callback.h: ns3::CallbackImplBase::CallbackImplBase() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## callback.h: bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
cls . add_method ( ' IsEqual ' , ' bool ' , [ param ( ' ns3::Ptr< ns3::CallbackImplBase const > ' , ' other ' ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
return
def register_Ns3TraceSourceAccessor_methods ( root_module , cls ) :
## trace-source-accessor.h: ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## trace-source-accessor.h: void ns3::TraceSourceAccessor::Ref() const [member function]
cls . add_method ( ' Ref ' , ' void ' , [ ] , is_const = True )
## trace-source-accessor.h: void ns3::TraceSourceAccessor::Unref() const [member function]
cls . add_method ( ' Unref ' , ' void ' , [ ] , is_const = True )
## trace-source-accessor.h: bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' obj ' , transfer_ownership = False ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## trace-source-accessor.h: bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
cls . add_method ( ' Connect ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' obj ' , transfer_ownership = False ) , param ( ' std::string ' , ' context ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## trace-source-accessor.h: bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' obj ' , transfer_ownership = False ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## trace-source-accessor.h: bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
cls . add_method ( ' Disconnect ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' obj ' , transfer_ownership = False ) , param ( ' std::string ' , ' context ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
return
def register_Ns3AttributeChecker_methods ( root_module , cls ) :
## attribute.h: ns3::AttributeChecker::AttributeChecker() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## attribute.h: bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
cls . add_method ( ' Check ' , ' bool ' , [ param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
cls . add_method ( ' GetValueTypeName ' , ' std::string ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
cls . add_method ( ' HasUnderlyingTypeInformation ' , ' bool ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
cls . add_method ( ' GetUnderlyingTypeInformation ' , ' std::string ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
cls . add_method ( ' Create ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
cls . add_method ( ' Copy ' , ' bool ' , [ param ( ' ns3::AttributeValue& ' , ' source ' , is_const = True ) , param ( ' ns3::AttributeValue& ' , ' destination ' ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
return
def register_Ns3RandomVariableChecker_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3NormalVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::NormalVariable::NormalVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' v ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' v ' ) , param ( ' double ' , ' b ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::NormalVariable::GetSingleValue(double m, double v) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' v ' ) ] , is_static = True )
## random-variable.h: static double ns3::NormalVariable::GetSingleValue(double m, double v, double b) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' v ' ) , param ( ' double ' , ' b ' ) ] , is_static = True )
return
def register_Ns3ObjectFactory_methods ( root_module , cls ) :
## object-factory.h: ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::ObjectFactory& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## object-factory.h: ns3::ObjectFactory::ObjectFactory() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object-factory.h: ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
cls . add_method ( ' Create ' , ' ns3::Ptr< ns3::Object > ' , [ ] , is_const = True )
## object-factory.h: ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
cls . add_method ( ' GetTypeId ' , ' ns3::TypeId ' , [ ] , is_const = True )
## object-factory.h: void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## object-factory.h: void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
cls . add_method ( ' SetTypeId ' , ' void ' , [ param ( ' ns3::TypeId ' , ' tid ' ) ] )
## object-factory.h: void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
cls . add_method ( ' SetTypeId ' , ' void ' , [ param ( ' char * ' , ' tid ' , transfer_ownership = False , is_const = True ) ] )
## object-factory.h: void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
cls . add_method ( ' SetTypeId ' , ' void ' , [ param ( ' std::string ' , ' tid ' ) ] )
cls . add_output_stream_operator ( )
return
def register_Ns3AttributeAccessor_methods ( root_module , cls ) :
## attribute.h: ns3::AttributeAccessor::AttributeAccessor() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## attribute.h: bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
cls . add_method ( ' Set ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' object ' , transfer_ownership = False ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
cls . add_method ( ' Get ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' object ' , transfer_ownership = False , is_const = True ) , param ( ' ns3::AttributeValue& ' , ' attribute ' ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeAccessor::HasGetter() const [member function]
cls . add_method ( ' HasGetter ' , ' bool ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeAccessor::HasSetter() const [member function]
cls . add_method ( ' HasSetter ' , ' bool ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
return
def register_Ns3ParetoVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::ParetoVariable::ParetoVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::ParetoVariable::ParetoVariable(double m) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) , param ( ' double ' , ' b ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::ParetoVariable::GetSingleValue(double m, double s, double b=0) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) , param ( ' double ' , ' b ' , default_value = ' 0 ' ) ] , is_static = True )
return
def register_Ns3ConstantVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::ConstantVariable::ConstantVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::ConstantVariable::ConstantVariable(double c) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' c ' ) ] , visibility = ' public ' )
## random-variable.h: void ns3::ConstantVariable::SetConstant(double c) [member function]
cls . add_method ( ' SetConstant ' , ' void ' , [ param ( ' double ' , ' c ' ) ] )
return
def register_Ns3EmpiricalVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
cls . add_method ( ' CDF ' , ' void ' , [ param ( ' double ' , ' v ' ) , param ( ' double ' , ' c ' ) ] )
return
def register_Ns3EnumChecker_methods ( root_module , cls ) :
## enum.h: ns3::EnumChecker::EnumChecker() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## enum.h: void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
cls . add_method ( ' AddDefault ' , ' void ' , [ param ( ' int ' , ' v ' ) , param ( ' std::string ' , ' name ' ) ] )
## enum.h: void ns3::EnumChecker::Add(int v, std::string name) [member function]
cls . add_method ( ' Add ' , ' void ' , [ param ( ' int ' , ' v ' ) , param ( ' std::string ' , ' name ' ) ] )
## enum.h: bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
cls . add_method ( ' Check ' , ' bool ' , [ param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_const = True , is_virtual = True )
## enum.h: std::string ns3::EnumChecker::GetValueTypeName() const [member function]
cls . add_method ( ' GetValueTypeName ' , ' std::string ' , [ ] , is_const = True , is_virtual = True )
## enum.h: bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
cls . add_method ( ' HasUnderlyingTypeInformation ' , ' bool ' , [ ] , is_const = True , is_virtual = True )
## enum.h: std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
cls . add_method ( ' GetUnderlyingTypeInformation ' , ' std::string ' , [ ] , is_const = True , is_virtual = True )
## enum.h: ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
cls . add_method ( ' Create ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## enum.h: bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
cls . add_method ( ' Copy ' , ' bool ' , [ param ( ' ns3::AttributeValue& ' , ' src ' , is_const = True ) , param ( ' ns3::AttributeValue& ' , ' dst ' ) ] , is_const = True , is_virtual = True )
return
def register_Ns3Empty_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3ObjectBase_methods ( root_module , cls ) :
## object-base.h: ns3::ObjectBase::ObjectBase() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object-base.h: ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::ObjectBase& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## object-base.h: static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' , ' ns3::TypeId ' , [ ] , is_static = True )
## object-base.h: ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' , ' ns3::TypeId ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## object-base.h: void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' SetAttribute ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## object-base.h: bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' SetAttributeFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## object-base.h: void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
cls . add_method ( ' GetAttribute ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' ) ] , is_const = True )
## object-base.h: bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
cls . add_method ( ' GetAttributeFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' attribute ' ) ] , is_const = True )
## object-base.h: bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' TraceConnect ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' context ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## object-base.h: bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' TraceConnectWithoutContext ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## object-base.h: bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' TraceDisconnect ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' std::string ' , ' context ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## object-base.h: bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' TraceDisconnectWithoutContext ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## object-base.h: void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
cls . add_method ( ' NotifyConstructionCompleted ' , ' void ' , [ ] , visibility = ' protected ' , is_virtual = True )
## object-base.h: void ns3::ObjectBase::ConstructSelf(ns3::AttributeList const & attributes) [member function]
cls . add_method ( ' ConstructSelf ' , ' void ' , [ param ( ' ns3::AttributeList& ' , ' attributes ' , is_const = True ) ] , visibility = ' protected ' )
return
def register_Ns3CommandLine_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__6_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__5_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__4_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__3_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__2_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__1_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3IntToType__0_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3RngStream_methods ( root_module , cls ) :
## rng-stream.h: ns3::RngStream::RngStream() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## rng-stream.h: ns3::RngStream::RngStream(ns3::RngStream const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::RngStream& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## rng-stream.h: void ns3::RngStream::InitializeStream() [member function]
cls . add_method ( ' InitializeStream ' , ' void ' , [ ] )
## rng-stream.h: void ns3::RngStream::ResetStartStream() [member function]
cls . add_method ( ' ResetStartStream ' , ' void ' , [ ] )
## rng-stream.h: void ns3::RngStream::ResetStartSubstream() [member function]
cls . add_method ( ' ResetStartSubstream ' , ' void ' , [ ] )
## rng-stream.h: void ns3::RngStream::ResetNextSubstream() [member function]
cls . add_method ( ' ResetNextSubstream ' , ' void ' , [ ] )
## rng-stream.h: void ns3::RngStream::ResetNthSubstream(uint32_t N) [member function]
cls . add_method ( ' ResetNthSubstream ' , ' void ' , [ param ( ' uint32_t ' , ' N ' ) ] )
## rng-stream.h: void ns3::RngStream::SetAntithetic(bool a) [member function]
cls . add_method ( ' SetAntithetic ' , ' void ' , [ param ( ' bool ' , ' a ' ) ] )
## rng-stream.h: void ns3::RngStream::IncreasedPrecis(bool incp) [member function]
cls . add_method ( ' IncreasedPrecis ' , ' void ' , [ param ( ' bool ' , ' incp ' ) ] )
## rng-stream.h: bool ns3::RngStream::SetSeeds(uint32_t const * seed) [member function]
cls . add_method ( ' SetSeeds ' , ' bool ' , [ param ( ' uint32_t * ' , ' seed ' , transfer_ownership = False , is_const = True ) ] )
## rng-stream.h: void ns3::RngStream::AdvanceState(int32_t e, int32_t c) [member function]
cls . add_method ( ' AdvanceState ' , ' void ' , [ param ( ' int32_t ' , ' e ' ) , param ( ' int32_t ' , ' c ' ) ] )
## rng-stream.h: void ns3::RngStream::GetState(uint32_t * seed) const [member function]
cls . add_method ( ' GetState ' , ' void ' , [ param ( ' uint32_t * ' , ' seed ' ) ] , is_const = True )
## rng-stream.h: double ns3::RngStream::RandU01() [member function]
cls . add_method ( ' RandU01 ' , ' double ' , [ ] )
## rng-stream.h: int32_t ns3::RngStream::RandInt(int32_t i, int32_t j) [member function]
cls . add_method ( ' RandInt ' , ' int32_t ' , [ param ( ' int32_t ' , ' i ' ) , param ( ' int32_t ' , ' j ' ) ] )
## rng-stream.h: static bool ns3::RngStream::SetPackageSeed(uint32_t const * seed) [member function]
cls . add_method ( ' SetPackageSeed ' , ' bool ' , [ param ( ' uint32_t * ' , ' seed ' , transfer_ownership = False , is_const = True ) ] , is_static = True )
## rng-stream.h: static bool ns3::RngStream::CheckSeed(uint32_t const * seed) [member function]
cls . add_method ( ' CheckSeed ' , ' bool ' , [ param ( ' uint32_t * ' , ' seed ' , transfer_ownership = False , is_const = True ) ] , is_static = True )
return
def register_Ns3LogNormalVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' mu ' ) , param ( ' double ' , ' sigma ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::LogNormalVariable::GetSingleValue(double mu, double sigma) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' mu ' ) , param ( ' double ' , ' sigma ' ) ] , is_static = True )
return
def register_Ns3IntEmpiricalVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
return
def register_Ns3PointerChecker_methods ( root_module , cls ) :
## pointer.h: ns3::TypeId ns3::PointerChecker::GetPointeeTypeId() const [member function]
cls . add_method ( ' GetPointeeTypeId ' , ' ns3::TypeId ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
cls . add_constructor ( [ ] )
return
def register_Ns3WeibullVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::WeibullVariable::WeibullVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::WeibullVariable::WeibullVariable(double m) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) , param ( ' double ' , ' b ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::WeibullVariable::GetSingleValue(double m, double s, double b=0) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' s ' ) , param ( ' double ' , ' b ' , default_value = ' 0 ' ) ] , is_static = True )
return
def register_Ns3CallbackBase_methods ( root_module , cls ) :
## callback.h: ns3::CallbackBase::CallbackBase() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## callback.h: ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
cls . add_method ( ' GetImpl ' , ' ns3::Ptr< ns3::CallbackImplBase > ' , [ ] , is_const = True )
## callback.h: ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ptr< ns3::CallbackImplBase > ' , ' impl ' ) ] , visibility = ' protected ' )
return
def register_Ns3ExponentialVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::ExponentialVariable::ExponentialVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' b ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::ExponentialVariable::GetSingleValue(double m, double b=0) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' m ' ) , param ( ' double ' , ' b ' , default_value = ' 0 ' ) ] , is_static = True )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Mac48Address_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Mac48Address, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Empty_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::empty, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3Address_const__amp___Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::Address const&, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Unsigned_int_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, unsigned int, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3MobilityModel_const__gt___Ns3Empty_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::MobilityModel const>, ns3::empty, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3TimeUnit__lt__1__gt___Ns3TimeUnit__lt__1__gt___Ns3WifiPhyState_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::TimeUnit<1>, ns3::TimeUnit<1>, ns3::WifiPhy::State, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Ns3WifiMode_Ns3WifiPreamble_Unsigned_char_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, ns3::WifiMode, ns3::WifiPreamble, unsigned char>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Double_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Ns3Ptr__lt__ns3Packet_const__gt___Double_Ns3WifiMode_Ns3WifiPreamble_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<ns3::Ptr<ns3::Packet const>, double, ns3::WifiMode, ns3::WifiPreamble>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3TracedCallback__Unsigned_int_Unsigned_int_Ns3Empty_Ns3Empty_methods ( root_module , cls ) :
## traced-callback.h: ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty>::TracedCallback() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-callback.h: void ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty>::ConnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty>::Connect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-callback.h: void ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty>::DisconnectWithoutContext(ns3::CallbackBase const & callback) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) ] )
## traced-callback.h: void ns3::TracedCallback<unsigned int, unsigned int, ns3::empty, ns3::empty>::Disconnect(ns3::CallbackBase const & callback, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' callback ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
return
def register_Ns3DeterministicVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
cls . add_constructor ( [ param ( ' double * ' , ' d ' ) , param ( ' uint32_t ' , ' c ' ) ] , visibility = ' public ' )
return
def register_Ns3AttributeList_methods ( root_module , cls ) :
## attribute-list.h: ns3::AttributeList::AttributeList() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## attribute-list.h: ns3::AttributeList::AttributeList(ns3::AttributeList const & o) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::AttributeList& ' , ' o ' , is_const = True ) ] , visibility = ' public ' )
## attribute-list.h: void ns3::AttributeList::Set(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## attribute-list.h: bool ns3::AttributeList::SetFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' SetFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## attribute-list.h: void ns3::AttributeList::SetWithTid(ns3::TypeId tid, std::string name, ns3::AttributeValue const & value) [member function]
cls . add_method ( ' SetWithTid ' , ' void ' , [ param ( ' ns3::TypeId ' , ' tid ' ) , param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## attribute-list.h: void ns3::AttributeList::Reset() [member function]
cls . add_method ( ' Reset ' , ' void ' , [ ] )
## attribute-list.h: static ns3::AttributeList * ns3::AttributeList::GetGlobal() [member function]
cls . add_method ( ' GetGlobal ' , ' ns3::AttributeList * ' , [ ] , is_static = True )
## attribute-list.h: std::string ns3::AttributeList::SerializeToString() const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ ] , is_const = True )
## attribute-list.h: bool ns3::AttributeList::DeserializeFromString(std::string value) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) ] )
return
def register_Ns3AttributeValue_methods ( root_module , cls ) :
## attribute.h: ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::AttributeValue& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## attribute.h: ns3::AttributeValue::AttributeValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## attribute.h: ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_pure_virtual = True , is_const = True , is_virtual = True )
## attribute.h: bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_pure_virtual = True , is_virtual = True )
return
def register_Ns3UniformVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::UniformVariable::UniformVariable() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' s ' ) , param ( ' double ' , ' l ' ) ] , visibility = ' public ' )
## random-variable.h: static double ns3::UniformVariable::GetSingleValue(double s, double l) [member function]
cls . add_method ( ' GetSingleValue ' , ' double ' , [ param ( ' double ' , ' s ' ) , param ( ' double ' , ' l ' ) ] , is_static = True )
return
def register_Ns3Object_methods ( root_module , cls ) :
## object.h: static ns3::TypeId ns3::Object::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' , ' ns3::TypeId ' , [ ] , is_static = True )
## object.h: ns3::Object::Object() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object.h: ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' , ' ns3::TypeId ' , [ ] , is_const = True , is_virtual = True )
## object.h: ns3::Ptr<ns3::Object> ns3::Object::GetObject(ns3::TypeId tid) const [member function]
cls . add_method ( ' GetObject ' , ' ns3::Ptr< ns3::Object > ' , [ param ( ' ns3::TypeId ' , ' tid ' ) ] , is_const = True , template_parameters = [ ' ns3::Object ' ] , custom_template_method_name = ' GetObject ' )
## object.h: void ns3::Object::Dispose() [member function]
cls . add_method ( ' Dispose ' , ' void ' , [ ] )
## object.h: void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
cls . add_method ( ' AggregateObject ' , ' void ' , [ param ( ' ns3::Ptr< ns3::Object > ' , ' other ' ) ] )
## object.h: ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
cls . add_method ( ' GetAggregateIterator ' , ' ns3::Object::AggregateIterator ' , [ ] , is_const = True )
## object.h: void ns3::Object::DoDispose() [member function]
cls . add_method ( ' DoDispose ' , ' void ' , [ ] , visibility = ' protected ' , is_virtual = True )
## object.h: ns3::Object::Object(ns3::Object const & o) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Object& ' , ' o ' , is_const = True ) ] , visibility = ' protected ' )
return
def register_Ns3ObjectAggregateIterator_methods ( root_module , cls ) :
## object.h: ns3::Object::AggregateIterator::AggregateIterator() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object.h: bool ns3::Object::AggregateIterator::HasNext() const [member function]
cls . add_method ( ' HasNext ' , ' bool ' , [ ] , is_const = True )
## object.h: ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
cls . add_method ( ' Next ' , ' ns3::Ptr< ns3::Object const > ' , [ ] )
return
def register_Ns3SequentialVariable_methods ( root_module , cls ) :
## random-variable.h: ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' f ' ) , param ( ' double ' , ' l ' ) , param ( ' double ' , ' i ' , default_value = ' 1 ' ) , param ( ' uint32_t ' , ' c ' , default_value = ' 1 ' ) ] , visibility = ' public ' )
## random-variable.h: ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
cls . add_constructor ( [ param ( ' double ' , ' f ' ) , param ( ' double ' , ' l ' ) , param ( ' ns3::RandomVariable& ' , ' i ' , is_const = True ) , param ( ' uint32_t ' , ' c ' , default_value = ' 1 ' ) ] , visibility = ' public ' )
return
def register_Ns3ObjectVectorChecker_methods ( root_module , cls ) :
## object-vector.h: ns3::TypeId ns3::ObjectVectorChecker::GetItemTypeId() const [member function]
cls . add_method ( ' GetItemTypeId ' , ' ns3::TypeId ' , [ ] , is_pure_virtual = True , is_const = True , is_virtual = True )
cls . add_constructor ( [ ] )
return
def register_Ns3StringChecker_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3ObjectVectorValue_methods ( root_module , cls ) :
## object-vector.h: ns3::ObjectVectorValue::ObjectVectorValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object-vector.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectVectorValue::Begin() const [member function]
cls . add_method ( ' Begin ' , ' __gnu_cxx::__normal_iterator< const ns3::Ptr< ns3::Object >, std::vector< ns3::Ptr< ns3::Object >, std::allocator< ns3::Ptr< ns3::Object > > > > ' , [ ] , is_const = True )
## object-vector.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectVectorValue::End() const [member function]
cls . add_method ( ' End ' , ' __gnu_cxx::__normal_iterator< const ns3::Ptr< ns3::Object >, std::vector< ns3::Ptr< ns3::Object >, std::allocator< ns3::Ptr< ns3::Object > > > > ' , [ ] , is_const = True )
## object-vector.h: uint32_t ns3::ObjectVectorValue::GetN() const [member function]
cls . add_method ( ' GetN ' , ' uint32_t ' , [ ] , is_const = True )
## object-vector.h: ns3::Ptr<ns3::Object> ns3::ObjectVectorValue::Get(uint32_t i) const [member function]
cls . add_method ( ' Get ' , ' ns3::Ptr< ns3::Object > ' , [ param ( ' uint32_t ' , ' i ' ) ] , is_const = True )
## object-vector.h: ns3::Ptr<ns3::AttributeValue> ns3::ObjectVectorValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## object-vector.h: std::string ns3::ObjectVectorValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## object-vector.h: bool ns3::ObjectVectorValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3BooleanChecker_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3UintegerValue_methods ( root_module , cls ) :
## uinteger.h: ns3::UintegerValue::UintegerValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## uinteger.h: ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
cls . add_constructor ( [ param ( ' uint64_t& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## uinteger.h: void ns3::UintegerValue::Set(uint64_t const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' uint64_t& ' , ' value ' , is_const = True ) ] )
## uinteger.h: uint64_t ns3::UintegerValue::Get() const [member function]
cls . add_method ( ' Get ' , ' uint64_t ' , [ ] , is_const = True )
## uinteger.h: ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## uinteger.h: std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## uinteger.h: bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3ObjectVectorAccessor_methods ( root_module , cls ) :
## object-vector.h: bool ns3::ObjectVectorAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
cls . add_method ( ' Set ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' object ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] , is_const = True , is_virtual = True )
## object-vector.h: bool ns3::ObjectVectorAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & value) const [member function]
cls . add_method ( ' Get ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' object ' , transfer_ownership = False , is_const = True ) , param ( ' ns3::AttributeValue& ' , ' value ' ) ] , is_const = True , is_virtual = True )
## object-vector.h: bool ns3::ObjectVectorAccessor::HasGetter() const [member function]
cls . add_method ( ' HasGetter ' , ' bool ' , [ ] , is_const = True , is_virtual = True )
## object-vector.h: bool ns3::ObjectVectorAccessor::HasSetter() const [member function]
cls . add_method ( ' HasSetter ' , ' bool ' , [ ] , is_const = True , is_virtual = True )
## object-vector.h: bool ns3::ObjectVectorAccessor::DoGetN(ns3::ObjectBase const * object, uint32_t * n) const [member function]
cls . add_method ( ' DoGetN ' , ' bool ' , [ param ( ' ns3::ObjectBase * ' , ' object ' , transfer_ownership = False , is_const = True ) , param ( ' uint32_t * ' , ' n ' ) ] , is_pure_virtual = True , is_const = True , visibility = ' private ' , is_virtual = True )
## object-vector.h: ns3::Ptr<ns3::Object> ns3::ObjectVectorAccessor::DoGet(ns3::ObjectBase const * object, uint32_t i) const [member function]
cls . add_method ( ' DoGet ' , ' ns3::Ptr< ns3::Object > ' , [ param ( ' ns3::ObjectBase * ' , ' object ' , transfer_ownership = False , is_const = True ) , param ( ' uint32_t ' , ' i ' ) ] , is_pure_virtual = True , is_const = True , visibility = ' private ' , is_virtual = True )
cls . add_constructor ( [ ] )
return
def register_Ns3PointerValue_methods ( root_module , cls ) :
## pointer.h: ns3::PointerValue::PointerValue(ns3::PointerValue const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::PointerValue& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## pointer.h: ns3::PointerValue::PointerValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## pointer.h: ns3::PointerValue::PointerValue(ns3::Ptr<ns3::Object> object) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ptr< ns3::Object > ' , ' object ' ) ] , visibility = ' public ' )
## pointer.h: void ns3::PointerValue::SetObject(ns3::Ptr<ns3::Object> object) [member function]
cls . add_method ( ' SetObject ' , ' void ' , [ param ( ' ns3::Ptr< ns3::Object > ' , ' object ' ) ] )
## pointer.h: ns3::Ptr<ns3::Object> ns3::PointerValue::GetObject() const [member function]
cls . add_method ( ' GetObject ' , ' ns3::Ptr< ns3::Object > ' , [ ] , is_const = True )
## pointer.h: ns3::Ptr<ns3::AttributeValue> ns3::PointerValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## pointer.h: std::string ns3::PointerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## pointer.h: bool ns3::PointerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3ObjectFactoryChecker_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3TypeIdChecker_methods ( root_module , cls ) :
cls . add_constructor ( [ ] )
return
def register_Ns3DoubleValue_methods ( root_module , cls ) :
## double.h: ns3::DoubleValue::DoubleValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## double.h: ns3::DoubleValue::DoubleValue(double const & value) [constructor]
cls . add_constructor ( [ param ( ' double& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## double.h: void ns3::DoubleValue::Set(double const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' double& ' , ' value ' , is_const = True ) ] )
## double.h: double ns3::DoubleValue::Get() const [member function]
cls . add_method ( ' Get ' , ' double ' , [ ] , is_const = True )
## double.h: ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## double.h: std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## double.h: bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3TypeIdValue_methods ( root_module , cls ) :
## type-id.h: ns3::TypeIdValue::TypeIdValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## type-id.h: ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::TypeId& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## type-id.h: void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' ns3::TypeId& ' , ' value ' , is_const = True ) ] )
## type-id.h: ns3::TypeId ns3::TypeIdValue::Get() const [member function]
cls . add_method ( ' Get ' , ' ns3::TypeId ' , [ ] , is_const = True )
## type-id.h: ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## type-id.h: std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## type-id.h: bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3EnumValue_methods ( root_module , cls ) :
## enum.h: ns3::EnumValue::EnumValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## enum.h: ns3::EnumValue::EnumValue(int v) [constructor]
cls . add_constructor ( [ param ( ' int ' , ' v ' ) ] , visibility = ' public ' )
## enum.h: void ns3::EnumValue::Set(int v) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' int ' , ' v ' ) ] )
## enum.h: int ns3::EnumValue::Get() const [member function]
cls . add_method ( ' Get ' , ' int ' , [ ] , is_const = True )
## enum.h: ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## enum.h: std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## enum.h: bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3RandomVariableValue_methods ( root_module , cls ) :
## random-variable.h: ns3::RandomVariableValue::RandomVariableValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## random-variable.h: ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::RandomVariable& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## random-variable.h: void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' ns3::RandomVariable& ' , ' value ' , is_const = True ) ] )
## random-variable.h: ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
cls . add_method ( ' Get ' , ' ns3::RandomVariable ' , [ ] , is_const = True )
## random-variable.h: ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## random-variable.h: std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## random-variable.h: bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3ObjectFactoryValue_methods ( root_module , cls ) :
## object-factory.h: ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## object-factory.h: ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::ObjectFactory& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## object-factory.h: void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' ns3::ObjectFactory& ' , ' value ' , is_const = True ) ] )
## object-factory.h: ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
cls . add_method ( ' Get ' , ' ns3::ObjectFactory ' , [ ] , is_const = True )
## object-factory.h: ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## object-factory.h: std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## object-factory.h: bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3IntegerValue_methods ( root_module , cls ) :
## integer.h: ns3::IntegerValue::IntegerValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## integer.h: ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
cls . add_constructor ( [ param ( ' int64_t& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## integer.h: void ns3::IntegerValue::Set(int64_t const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' int64_t& ' , ' value ' , is_const = True ) ] )
## integer.h: int64_t ns3::IntegerValue::Get() const [member function]
cls . add_method ( ' Get ' , ' int64_t ' , [ ] , is_const = True )
## integer.h: ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## integer.h: std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## integer.h: bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3BooleanValue_methods ( root_module , cls ) :
## boolean.h: ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::BooleanValue& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## boolean.h: ns3::BooleanValue::BooleanValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## boolean.h: ns3::BooleanValue::BooleanValue(bool value) [constructor]
cls . add_constructor ( [ param ( ' bool ' , ' value ' ) ] , visibility = ' public ' )
## boolean.h: ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## boolean.h: bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
## boolean.h: bool ns3::BooleanValue::Get() const [member function]
cls . add_method ( ' Get ' , ' bool ' , [ ] , is_const = True )
## boolean.h: std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## boolean.h: void ns3::BooleanValue::Set(bool value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' bool ' , ' value ' ) ] )
cls . add_output_stream_operator ( )
return
2008-07-14 11:42:49 +01:00
def register_Ns3StringValue_methods ( root_module , cls ) :
## string.h: ns3::StringValue::StringValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## string.h: ns3::StringValue::StringValue(std::string const & value) [constructor]
cls . add_constructor ( [ param ( ' std::string& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## string.h: void ns3::StringValue::Set(std::string const & value) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' std::string& ' , ' value ' , is_const = True ) ] )
## string.h: std::string ns3::StringValue::Get() const [member function]
cls . add_method ( ' Get ' , ' std::string ' , [ ] , is_const = True )
## string.h: ns3::Ptr<ns3::AttributeValue> ns3::StringValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , is_virtual = True )
## string.h: std::string ns3::StringValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , is_virtual = True )
## string.h: bool ns3::StringValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_virtual = True )
return
def register_Ns3EmptyAttributeValue_methods ( root_module , cls ) :
## attribute.h: ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::EmptyAttributeValue& ' , ' arg0 ' , is_const = True ) ] , visibility = ' public ' )
## attribute.h: ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## attribute.h: ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
cls . add_method ( ' Copy ' , ' ns3::Ptr< ns3::AttributeValue > ' , [ ] , is_const = True , visibility = ' private ' , is_virtual = True )
## attribute.h: std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
cls . add_method ( ' SerializeToString ' , ' std::string ' , [ param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , is_const = True , visibility = ' private ' , is_virtual = True )
## attribute.h: bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
cls . add_method ( ' DeserializeFromString ' , ' bool ' , [ param ( ' std::string ' , ' value ' ) , param ( ' ns3::Ptr< ns3::AttributeChecker const > ' , ' checker ' ) ] , visibility = ' private ' , is_virtual = True )
return
2008-07-08 10:43:58 -07:00
def register_Ns3TracedValue__Unsigned_int_methods ( root_module , cls ) :
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue() [constructor]
cls . add_constructor ( [ ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(ns3::TracedValue<unsigned int> const & o) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::TracedValue< unsigned int >& ' , ' o ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(unsigned int const & v) [constructor]
cls . add_constructor ( [ param ( ' unsigned int& ' , ' v ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(ns3::IntegerValue const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::IntegerValue& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(ns3::UintegerValue const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::UintegerValue& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(ns3::BooleanValue const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::BooleanValue& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: ns3::TracedValue<unsigned int>::TracedValue(ns3::EnumValue const & value) [constructor]
cls . add_constructor ( [ param ( ' ns3::EnumValue& ' , ' value ' , is_const = True ) ] , visibility = ' public ' )
## traced-value.h: void ns3::TracedValue<unsigned int>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## traced-value.h: void ns3::TracedValue<unsigned int>::Connect(ns3::CallbackBase const & cb, std::string path) [member function]
cls . add_method ( ' Connect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-value.h: void ns3::TracedValue<unsigned int>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function]
cls . add_method ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## traced-value.h: void ns3::TracedValue<unsigned int>::Disconnect(ns3::CallbackBase const & cb, std::string path) [member function]
cls . add_method ( ' Disconnect ' , ' void ' , [ param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) , param ( ' std::string ' , ' path ' ) ] )
## traced-value.h: void ns3::TracedValue<unsigned int>::Set(unsigned int const & v) [member function]
cls . add_method ( ' Set ' , ' void ' , [ param ( ' unsigned int& ' , ' v ' , is_const = True ) ] )
## traced-value.h: unsigned int ns3::TracedValue<unsigned int>::Get() const [member function]
cls . add_method ( ' Get ' , ' unsigned int ' , [ ] , is_const = True )
return
def register_functions ( root_module ) :
module = root_module
## boolean.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBooleanChecker() [free function]
module . add_function ( ' MakeBooleanChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' double ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' float ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' long ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' int ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' short ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' signed char ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' unsigned long ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' unsigned int ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' unsigned short ' ] )
## type-name.h: extern std::string ns3::TypeNameGet() [free function]
module . add_function ( ' TypeNameGet ' , ' std::string ' , [ ] , template_parameters = [ ' unsigned char ' ] )
## string.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeStringChecker() [free function]
module . add_function ( ' MakeStringChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] )
## enum.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeEnumChecker(int v1, std::string n1, int v2=0, std::string n2="", int v3=0, std::string n3="", int v4=0, std::string n4="", int v5=0, std::string n5="", int v6=0, std::string n6="", int v7=0, std::string n7="", int v8=0, std::string n8="", int v9=0, std::string n9="", int v10=0, std::string n10="", int v11=0, std::string n11="", int v12=0, std::string n12="") [free function]
module . add_function ( ' MakeEnumChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ param ( ' int ' , ' v1 ' ) , param ( ' std::string ' , ' n1 ' ) , param ( ' int ' , ' v2 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n2 ' , default_value = ' " " ' ) , param ( ' int ' , ' v3 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n3 ' , default_value = ' " " ' ) , param ( ' int ' , ' v4 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n4 ' , default_value = ' " " ' ) , param ( ' int ' , ' v5 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n5 ' , default_value = ' " " ' ) , param ( ' int ' , ' v6 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n6 ' , default_value = ' " " ' ) , param ( ' int ' , ' v7 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n7 ' , default_value = ' " " ' ) , param ( ' int ' , ' v8 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n8 ' , default_value = ' " " ' ) , param ( ' int ' , ' v9 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n9 ' , default_value = ' " " ' ) , param ( ' int ' , ' v10 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n10 ' , default_value = ' " " ' ) , param ( ' int ' , ' v11 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n11 ' , default_value = ' " " ' ) , param ( ' int ' , ' v12 ' , default_value = ' 0 ' ) , param ( ' std::string ' , ' n12 ' , default_value = ' " " ' ) ] )
## type-id.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeTypeIdChecker() [free function]
module . add_function ( ' MakeTypeIdChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] )
## ptr.h: extern ns3::Ptr<ns3::PointerValue> ns3::Create() [free function]
module . add_function ( ' Create ' , ' ns3::Ptr< ns3::PointerValue > ' , [ ] , template_parameters = [ ' ns3::PointerValue ' ] )
## ptr.h: extern ns3::Ptr<ns3::ObjectVectorValue> ns3::Create() [free function]
module . add_function ( ' Create ' , ' ns3::Ptr< ns3::ObjectVectorValue > ' , [ ] , template_parameters = [ ' ns3::ObjectVectorValue ' ] )
## object-factory.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeObjectFactoryChecker() [free function]
module . add_function ( ' MakeObjectFactoryChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] )
## breakpoint.h: extern void ns3::BreakpointFallback() [free function]
module . add_function ( ' BreakpointFallback ' , ' void ' , [ ] )
## random-variable.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeRandomVariableChecker() [free function]
module . add_function ( ' MakeRandomVariableChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ ] )
register_functions_ns3_internal ( module . get_submodule ( ' internal ' ) , root_module )
register_functions_ns3_TimeStepPrecision ( module . get_submodule ( ' TimeStepPrecision ' ) , root_module )
register_functions_ns3_Config ( module . get_submodule ( ' Config ' ) , root_module )
register_functions_ns3_olsr ( module . get_submodule ( ' olsr ' ) , root_module )
return
def register_functions_ns3_internal ( module , root_module ) :
## uinteger.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeUintegerChecker(uint64_t min, uint64_t max, std::string name) [free function]
module . add_function ( ' MakeUintegerChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ param ( ' uint64_t ' , ' min ' ) , param ( ' uint64_t ' , ' max ' ) , param ( ' std::string ' , ' name ' ) ] )
## integer.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeIntegerChecker(int64_t min, int64_t max, std::string name) [free function]
module . add_function ( ' MakeIntegerChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ param ( ' int64_t ' , ' min ' ) , param ( ' int64_t ' , ' max ' ) , param ( ' std::string ' , ' name ' ) ] )
## double.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeDoubleChecker(double min, double max, std::string name) [free function]
module . add_function ( ' MakeDoubleChecker ' , ' ns3::Ptr< ns3::AttributeChecker const > ' , [ param ( ' double ' , ' min ' ) , param ( ' double ' , ' max ' ) , param ( ' std::string ' , ' name ' ) ] )
return
def register_functions_ns3_TimeStepPrecision ( module , root_module ) :
return
def register_functions_ns3_Config ( module , root_module ) :
## config.h: extern bool ns3::Config::SetDefaultFailSafe(std::string name, ns3::AttributeValue const & value) [free function]
module . add_function ( ' SetDefaultFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## config.h: extern void ns3::Config::DisconnectWithoutContext(std::string path, ns3::CallbackBase const & cb) [free function]
module . add_function ( ' DisconnectWithoutContext ' , ' void ' , [ param ( ' std::string ' , ' path ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## config.h: extern void ns3::Config::SetDefault(std::string name, ns3::AttributeValue const & value) [free function]
module . add_function ( ' SetDefault ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## config.h: extern void ns3::Config::Connect(std::string path, ns3::CallbackBase const & cb) [free function]
module . add_function ( ' Connect ' , ' void ' , [ param ( ' std::string ' , ' path ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## config.h: extern ns3::Ptr<ns3::Object> ns3::Config::GetRootNamespaceObject(uint32_t i) [free function]
module . add_function ( ' GetRootNamespaceObject ' , ' ns3::Ptr< ns3::Object > ' , [ param ( ' uint32_t ' , ' i ' ) ] )
## config.h: extern void ns3::Config::ConnectWithoutContext(std::string path, ns3::CallbackBase const & cb) [free function]
module . add_function ( ' ConnectWithoutContext ' , ' void ' , [ param ( ' std::string ' , ' path ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
## config.h: extern void ns3::Config::UnregisterRootNamespaceObject(ns3::Ptr<ns3::Object> obj) [free function]
module . add_function ( ' UnregisterRootNamespaceObject ' , ' void ' , [ param ( ' ns3::Ptr< ns3::Object > ' , ' obj ' ) ] )
## config.h: extern bool ns3::Config::SetGlobalFailSafe(std::string name, ns3::AttributeValue const & value) [free function]
module . add_function ( ' SetGlobalFailSafe ' , ' bool ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## config.h: extern uint32_t ns3::Config::GetRootNamespaceObjectN() [free function]
module . add_function ( ' GetRootNamespaceObjectN ' , ' uint32_t ' , [ ] )
## config.h: extern void ns3::Config::Set(std::string path, ns3::AttributeValue const & value) [free function]
module . add_function ( ' Set ' , ' void ' , [ param ( ' std::string ' , ' path ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## config.h: extern void ns3::Config::SetGlobal(std::string name, ns3::AttributeValue const & value) [free function]
module . add_function ( ' SetGlobal ' , ' void ' , [ param ( ' std::string ' , ' name ' ) , param ( ' ns3::AttributeValue& ' , ' value ' , is_const = True ) ] )
## config.h: extern void ns3::Config::RegisterRootNamespaceObject(ns3::Ptr<ns3::Object> obj) [free function]
module . add_function ( ' RegisterRootNamespaceObject ' , ' void ' , [ param ( ' ns3::Ptr< ns3::Object > ' , ' obj ' ) ] )
## config.h: extern void ns3::Config::Disconnect(std::string path, ns3::CallbackBase const & cb) [free function]
module . add_function ( ' Disconnect ' , ' void ' , [ param ( ' std::string ' , ' path ' ) , param ( ' ns3::CallbackBase& ' , ' cb ' , is_const = True ) ] )
return
def register_functions_ns3_olsr ( module , root_module ) :
return