diff -r 0b192a3a05a4 -r 00f9ee97d895 bluetoothappprofiles/avrcp/remconbeareravrcp/inc/avrcputils.h --- a/bluetoothappprofiles/avrcp/remconbeareravrcp/inc/avrcputils.h Tue Feb 02 00:20:42 2010 +0200 +++ b/bluetoothappprofiles/avrcp/remconbeareravrcp/inc/avrcputils.h Fri Apr 16 15:08:36 2010 +0300 @@ -170,4 +170,22 @@ CSpecificThreadCallBackBody* iBody; }; +/** +An extended double queue link class to provide additional features. +*/ +NONSHARABLE_CLASS(TAvrcpDblQueLink) : public TDblQueLink + { + public: + inline TBool IsQueued() const; + }; + +/** +Indicates whether the queue link is attached to a queue. +@return True if the link is queued, false otherwise. +*/ +inline TBool TAvrcpDblQueLink::IsQueued() const + { + return iNext ? ETrue : EFalse; + } + #endif // AVRCPUTILS_H