equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Module for holding control groups belonging to EffectModule. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CAMMSEFFECTMODULE_H |
|
20 #define CAMMSEFFECTMODULE_H |
|
21 |
|
22 // INCLUDES |
|
23 #include "cammsmodule.h" |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class CMMAPlayer; |
|
27 class CAMMSGlobalManager; |
|
28 |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * Module for holding control groups belonging to EffectModule. |
|
34 * |
|
35 * |
|
36 * |
|
37 * @since 3.0 |
|
38 */ |
|
39 NONSHARABLE_CLASS(CAMMSEffectModule): public CAMMSModule |
|
40 { |
|
41 public: |
|
42 /** |
|
43 * Two-phased constructor. |
|
44 * |
|
45 * @param aGlobalManager Global manager. |
|
46 */ |
|
47 static CAMMSEffectModule* NewLC(CAMMSGlobalManager* aGlobalManager); |
|
48 |
|
49 /** |
|
50 * Destructor. |
|
51 */ |
|
52 ~CAMMSEffectModule(); |
|
53 |
|
54 public: // From CAMMSModule |
|
55 |
|
56 void AddPlayerNoStateCheckL(CMMAPlayer* aPlayer); |
|
57 |
|
58 protected: |
|
59 /** |
|
60 * C++ default constructor. |
|
61 * |
|
62 * @param aGlobalManager Global manager. |
|
63 */ |
|
64 CAMMSEffectModule(CAMMSGlobalManager* aGlobalManager); |
|
65 |
|
66 void ConstructL(); |
|
67 |
|
68 private: // Data |
|
69 |
|
70 CAMMSGlobalManager* iGlobalManager; // Not owned. |
|
71 }; |
|
72 |
|
73 #endif // CAMMSEFFECTMODULE_H |
|
74 |
|
75 |