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 REMCONTRACKINFOCONTROLLEROBSERVER_H
williamr@2: #define REMCONTRACKINFOCONTROLLEROBSERVER_H
williamr@2: 
williamr@2: #include <e32base.h>
williamr@2: 
williamr@2: /**
williamr@2: Client-implemented mixin- notifies the client of incoming TrackInfo responses.
williamr@2: */
williamr@2: class MRemConTrackInfoControllerObserver
williamr@2: 	{
williamr@2: public:
williamr@2: 	/**
williamr@2: 	A response to a 'set track name' command has been received.
williamr@2: 	@param aError The response error.
williamr@2: 	*/
williamr@2: 	virtual void MrcticoSetTrackNameResponse(TInt aError);
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 MrcticoGetTrackNameResponse(TInt aError, const TDesC& aTrackName);
williamr@2: 	
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 MrcticoGetArtistResponse(TInt aError, const TDesC& aArtist);
williamr@2: 	
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 MrcticoGetTrackDurationResponse(TInt aError, const TTime& aDuration);
williamr@2: #endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
williamr@2: 	};
williamr@2: 
williamr@2: #endif // REMCONTRACKINFOCONTROLLEROBSERVER_H