51
|
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 "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
@file
|
|
18 |
@internalComponent
|
|
19 |
*/
|
|
20 |
|
|
21 |
#include <remcontrackinfotargetobserver.h>
|
|
22 |
|
|
23 |
EXPORT_C void MRemConTrackInfoTargetObserver::MrctitoGetTrackName()
|
|
24 |
{
|
|
25 |
}
|
|
26 |
|
|
27 |
EXPORT_C void MRemConTrackInfoTargetObserver::MrctitoGetArtist()
|
|
28 |
{
|
|
29 |
}
|
|
30 |
|
|
31 |
EXPORT_C void MRemConTrackInfoTargetObserver::MrctitoGetTrackDuration()
|
|
32 |
{
|
|
33 |
}
|
|
34 |
|
|
35 |
//Only used in the internal pan-shared back to back test builds. Should never be in a released product.
|
|
36 |
#ifdef SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
|
|
37 |
/**
|
|
38 |
A 'set track name' command has been received.
|
|
39 |
|
|
40 |
@param aTrackName The new track name from the controller.
|
|
41 |
*/
|
|
42 |
EXPORT_C void MRemConTrackInfoTargetObserver::MrctitoSetTrackName(const TDesC& /*aTrackName*/)
|
|
43 |
{
|
|
44 |
}
|
|
45 |
#endif //SYMBIAN_ENABLE_TRACKINFO_BACKTOBACK_TEST_FUNCT
|