equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2005 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 "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: AMMS player builder for adding AMMS audio player controls. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CAMMSAUDIOPLAYERBUILDER_H |
|
20 #define CAMMSAUDIOPLAYERBUILDER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include "cammsplayerbuilder.h" |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * |
|
30 * AudioControl player builder. |
|
31 * This class adds AMMS audio player controls. |
|
32 * |
|
33 * @since 3.0 |
|
34 */ |
|
35 NONSHARABLE_CLASS(CAMMSAudioPlayerBuilder): public CAMMSPlayerBuilder |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 |
|
39 /** |
|
40 * Two-phased constructor. |
|
41 */ |
|
42 static CAMMSAudioPlayerBuilder* NewLC(); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 ~CAMMSAudioPlayerBuilder(); |
|
48 |
|
49 public: // Funtions from base classes |
|
50 /** |
|
51 * Adds the AMMS audio controls to the player |
|
52 * |
|
53 * @param aPlayer The Player where the AMMS controls are added |
|
54 */ |
|
55 void PreparePlayerL(CMMAPlayer* aPlayer); |
|
56 |
|
57 private: |
|
58 /** |
|
59 * C++ default constructor. |
|
60 */ |
|
61 CAMMSAudioPlayerBuilder(); |
|
62 |
|
63 }; |
|
64 |
|
65 #endif // CAMMSAUDIOPLAYERBUILDER_H |
|
66 |
|
67 |
|