Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
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 REMCONTRACKINFOCONTROLLEROBSERVER_H
25 #define REMCONTRACKINFOCONTROLLEROBSERVER_H
30 Client-implemented mixin- notifies the client of incoming TrackInfo responses.
32 class MRemConTrackInfoControllerObserver
36 A response to a 'set track name' command has been received.
37 @param aError The response error.
39 virtual void MrcticoSetTrackNameResponse(TInt aError);
42 The following section of code is included to allow internal back to back
43 testing of this component within Symbian Software Ltd. It will only be
44 compiled in specially configured test builds. It will never be available
45 in any release and so should never be used outside of Symbian owned test
48 #ifdef SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
50 This method is only available in specially configured test builds and will
51 not be found in any released code.
54 virtual void MrcticoGetTrackNameResponse(TInt aError, const TDesC& aTrackName);
57 This method is only available in specially configured test builds and will
58 not be found in any released code.
61 virtual void MrcticoGetArtistResponse(TInt aError, const TDesC& aArtist);
64 This method is only available in specially configured test builds and will
65 not be found in any released code.
68 virtual void MrcticoGetTrackDurationResponse(TInt aError, const TTime& aDuration);
69 #endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
72 #endif // REMCONTRACKINFOCONTROLLEROBSERVER_H