1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // 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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef REMCONTRACKINFOTARGETOBSERVER_H
25 #define REMCONTRACKINFOTARGETOBSERVER_H
30 Client-implemented mixin- notifies the client of incoming TrackInfo commands.
32 class MRemConTrackInfoTargetObserver
36 A 'get track name' command has been received.
38 virtual void MrctitoGetTrackName();
41 A 'get artist' command has been received.
43 virtual void MrctitoGetArtist();
46 A 'get track duration' command has been received.
48 virtual void MrctitoGetTrackDuration();
51 The following section of code is included to allow internal back to back
52 testing of this component within Symbian Software Ltd. It will only be
53 compiled in specially configured test builds. It will never be available
54 in any release and so should never be used outside of Symbian owned test
57 #ifdef SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
59 This method is only available in specially configured test builds and will
60 not be found in any released code.
63 virtual void MrctitoSetTrackName(const TDesC& aTrackName);
64 #endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
67 #endif // REMCONTRACKINFOTARGETOBSERVER_H