epoc32/include/remcontrackinfocontrollerobserver.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 
    18 /**
    19  @file
    20  @publishedAll
    21  @released
    22 */
    23 
    24 #ifndef REMCONTRACKINFOCONTROLLEROBSERVER_H
    25 #define REMCONTRACKINFOCONTROLLEROBSERVER_H
    26 
    27 #include <e32base.h>
    28 
    29 /**
    30 Client-implemented mixin- notifies the client of incoming TrackInfo responses.
    31 */
    32 class MRemConTrackInfoControllerObserver
    33 	{
    34 public:
    35 	/**
    36 	A response to a 'set track name' command has been received.
    37 	@param aError The response error.
    38 	*/
    39 	virtual void MrcticoSetTrackNameResponse(TInt aError);
    40 	
    41 /**
    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 
    46 code.
    47 */
    48 #ifdef SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
    49 	/**
    50 	This method is only available in specially configured test builds and will 
    51 	not be found in any released code.
    52 	@internalTechnology  
    53 	*/
    54 	virtual void MrcticoGetTrackNameResponse(TInt aError, const TDesC& aTrackName);
    55 	
    56 	/**
    57 	This method is only available in specially configured test builds and will 
    58 	not be found in any released code.  
    59 	@internalTechnology
    60 	*/
    61 	virtual void MrcticoGetArtistResponse(TInt aError, const TDesC& aArtist);
    62 	
    63 	/**
    64 	This method is only available in specially configured test builds and will 
    65 	not be found in any released code.  
    66 	@internalTechnology
    67 	*/
    68 	virtual void MrcticoGetTrackDurationResponse(TInt aError, const TTime& aDuration);
    69 #endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
    70 	};
    71 
    72 #endif // REMCONTRACKINFOCONTROLLEROBSERVER_H