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: Contains functionality specific to media files
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef __CMGMEDIAFILE_H
|
|
20 |
#define __CMGMEDIAFILE_H
|
|
21 |
|
|
22 |
#include "mgmediaitem.h"
|
|
23 |
|
|
24 |
class MCLFItem;
|
|
25 |
/**
|
|
26 |
* This class is responsible for obtaining those parameters
|
|
27 |
* which are specific to media files
|
|
28 |
*
|
|
29 |
* @since Series60 v3.2
|
|
30 |
*/
|
|
31 |
NONSHARABLE_CLASS( CMgMediaFile ) : public CMgMediaItem
|
|
32 |
{
|
|
33 |
|
|
34 |
public:
|
|
35 |
|
|
36 |
/**
|
|
37 |
* Two-phased constructor.
|
|
38 |
* @param void
|
|
39 |
*/
|
|
40 |
static CMgMediaFile* NewL();
|
|
41 |
|
|
42 |
/**
|
|
43 |
* Destructor.
|
|
44 |
*/
|
|
45 |
~CMgMediaFile(){};
|
|
46 |
|
|
47 |
|
|
48 |
/**
|
|
49 |
* This is responsible for filling only mediafile
|
|
50 |
* specific information
|
|
51 |
* @param outputMap Contains the result in the form of
|
|
52 |
* name-value pairs
|
|
53 |
* @param aClfItem A reference to the list model item to be processed
|
|
54 |
* @return void
|
|
55 |
*/
|
|
56 |
void FillInfoL( CLiwDefaultMap *aOutputMap, const MCLFItem& aClfItem );
|
|
57 |
|
|
58 |
|
|
59 |
};
|
|
60 |
|
|
61 |
#endif // __CMGMEDIAFILE_H
|