bluetooth/btextnotifiers/src/BTExtNotifiers.cpp
branchRCL_3
changeset 11 20fda83a6398
parent 0 29b1cd4cb562
equal deleted inserted replaced
10:8a27654f7b62 11:20fda83a6398
   662 	{
   662 	{
   663 	LOG_FUNC
   663 	LOG_FUNC
   664 	return iLocallyInitiated;
   664 	return iLocallyInitiated;
   665 	}
   665 	}
   666 
   666 
       
   667 //
       
   668 // TBTUserConfirmationParams
       
   669 //
       
   670 
       
   671 /**
       
   672 @internalTechnology
       
   673 */
       
   674 EXPORT_C TBTUserConfirmationParams::TBTUserConfirmationParams(const TBTDevAddr& aDevAddr, const TDesC& aDeviceName, TBool aLocallyInitiated)
       
   675 	: TBTNotifierParams2(aDevAddr, aDeviceName)
       
   676 	, iLocallyInitiated(aLocallyInitiated)
       
   677 	{
       
   678 	LOG_FUNC
       
   679 	}
       
   680 
       
   681 /**
       
   682 Default constructor.  Required to allow the class to be packaged with the TPckg family of classes.
       
   683 @internalTechnology
       
   684 */
       
   685 EXPORT_C TBTUserConfirmationParams::TBTUserConfirmationParams()
       
   686 	: TBTNotifierParams2()
       
   687 	{
       
   688 	LOG_FUNC
       
   689 	}
       
   690 
       
   691 /**
       
   692 Accessor for indicating whether the user confirmation process was initiated by a local request,
       
   693 or whether it was trigger by the remote device.
       
   694 @return EFalse if remote side initiated, otherwise it is locally initiated.
       
   695 */
       
   696 EXPORT_C TBool TBTUserConfirmationParams::LocallyInitiated() const
       
   697 	{
       
   698 	LOG_FUNC
       
   699 	return iLocallyInitiated;
       
   700 	}
       
   701 
       
   702 
   667 
   703 
   668 //
   704 //
   669 // TBTPinCodeEntryNotifierParams
   705 // TBTPinCodeEntryNotifierParams
   670 //
   706 //
   671 
   707