1 /* |
|
2 * Copyright (c) 2005-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 "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: Manipulates the settings of an audio effect called reverb. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include <logger.h> |
|
21 #include "cammsbasereverbcontrol.h" |
|
22 |
|
23 |
|
24 // ============================ MEMBER FUNCTIONS =============================== |
|
25 |
|
26 // Destructor |
|
27 CAMMSBaseReverbControl::~CAMMSBaseReverbControl() |
|
28 { |
|
29 LOG( EJavaAMMS, EInfo, "AMMS::CAMMSBaseReverbControl::~CAMMSBaseReverbControl"); |
|
30 } |
|
31 |
|
32 // ----------------------------------------------------------------------------- |
|
33 // CAMMSBaseReverbControl::GetEnvironmentalReverbUtilityL |
|
34 // Returns the environmental reverb utility. |
|
35 // ----------------------------------------------------------------------------- |
|
36 void CAMMSBaseReverbControl::GetEnvironmentalReverbUtilityL( |
|
37 CEnvironmentalReverbUtility** /*aEnvironmentalReverbUtility*/) |
|
38 { |
|
39 // Derived Class will implement this method |
|
40 } |
|
41 // only require if platform support EMC |
|
42 #ifdef RD_JAVA_HTTP_EMC_ENABLED |
|
43 MReverbControl* CAMMSBaseReverbControl::GetReverbControlL() |
|
44 { |
|
45 // derived class will implement this method |
|
46 return (MReverbControl*)NULL; |
|
47 } |
|
48 #endif |
|
49 // ----------------------------------------------------------------------------- |
|
50 // CAMMSBaseReverbControl::CAMMSBaseReverbControl |
|
51 // C++ default constructor can NOT contain any code, that |
|
52 // might leave. |
|
53 // ----------------------------------------------------------------------------- |
|
54 CAMMSBaseReverbControl::CAMMSBaseReverbControl(CMMAPlayer* aPlayer) |
|
55 : CAMMSEffectControl(aPlayer) |
|
56 { |
|
57 } |
|
58 |
|
59 // End of File |
|