williamr@2: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@2: // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members williamr@2: // which accompanies this distribution, and is available williamr@2: // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // williamr@2: williamr@2: williamr@2: williamr@2: /** williamr@2: @file williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: williamr@2: #ifndef REMCONTRACKINFOTARGETOBSERVER_H williamr@2: #define REMCONTRACKINFOTARGETOBSERVER_H williamr@2: williamr@2: #include williamr@2: williamr@2: /** williamr@2: Client-implemented mixin- notifies the client of incoming TrackInfo commands. williamr@2: */ williamr@2: class MRemConTrackInfoTargetObserver williamr@2: { williamr@2: public: williamr@2: /** williamr@2: A 'get track name' command has been received. williamr@2: */ williamr@2: virtual void MrctitoGetTrackName(); williamr@2: williamr@2: /** williamr@2: A 'get artist' command has been received. williamr@2: */ williamr@2: virtual void MrctitoGetArtist(); williamr@2: williamr@2: /** williamr@2: A 'get track duration' command has been received. williamr@2: */ williamr@2: virtual void MrctitoGetTrackDuration(); williamr@2: williamr@2: /** williamr@2: The following section of code is included to allow internal back to back williamr@2: testing of this component within Symbian Software Ltd. It will only be williamr@2: compiled in specially configured test builds. It will never be available williamr@2: in any release and so should never be used outside of Symbian owned test williamr@2: code. williamr@2: */ williamr@2: #ifdef SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT williamr@2: /** williamr@2: This method is only available in specially configured test builds and will williamr@2: not be found in any released code. williamr@2: @internalTechnology williamr@2: */ williamr@2: virtual void MrctitoSetTrackName(const TDesC& aTrackName); williamr@2: #endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT williamr@2: }; williamr@2: williamr@2: #endif // REMCONTRACKINFOTARGETOBSERVER_H