5
|
1 |
/*
|
|
2 |
* Copyright (c) 2007-2007 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: This class contains functions for populating link files
|
|
15 |
* with appropriate data
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef __CMGLINKFILE_H
|
|
21 |
#define __CMGLINKFILE_H
|
|
22 |
|
|
23 |
#include "mgmediaitem.h"
|
|
24 |
|
|
25 |
class MCLFItem;
|
|
26 |
/**
|
|
27 |
* This class contains functions for populating link files with
|
|
28 |
* appropriate data
|
|
29 |
*
|
|
30 |
*
|
|
31 |
* @since Series60 v3.2
|
|
32 |
*/
|
|
33 |
|
|
34 |
NONSHARABLE_CLASS( CMgLinkFile ) : public CMgMediaItem
|
|
35 |
{
|
|
36 |
|
|
37 |
public:
|
|
38 |
|
|
39 |
/**
|
|
40 |
* Two-phased constructor.
|
|
41 |
*
|
|
42 |
*/
|
|
43 |
static CMgLinkFile* NewL();
|
|
44 |
|
|
45 |
/**
|
|
46 |
* Destructor.
|
|
47 |
*/
|
|
48 |
~CMgLinkFile(){};
|
|
49 |
|
|
50 |
// from base class CMediaItem
|
|
51 |
/**
|
|
52 |
* This is responsible for filling only linkfile
|
|
53 |
* specific information
|
|
54 |
* @param outputMap This contains the result in the
|
|
55 |
* form of key-value pairs
|
|
56 |
* @return void
|
|
57 |
*/
|
|
58 |
void FillInfoL( CLiwDefaultMap *aOutputMap, const MCLFItem& aClfItem );
|
|
59 |
|
|
60 |
};
|
|
61 |
|
|
62 |
#endif // __CMGLINKFILE_H
|