equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: Telephony Multimedia Service |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef TMS_GLOBAL_GAIN_EFFECT_IMPL_H |
|
19 #define TMS_GLOBAL_GAIN_EFFECT_IMPL_H |
|
20 |
|
21 #include <glib.h> |
|
22 #include <tmsglobalgaineffect.h> |
|
23 |
|
24 namespace TMS { |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class TMSProxy; |
|
28 |
|
29 // TMSGlobalGainEffectImpl class |
|
30 class TMSGlobalGainEffectImpl : public TMSGlobalGainEffect |
|
31 { |
|
32 public: |
|
33 ~TMSGlobalGainEffectImpl(); |
|
34 |
|
35 static gint Create(TMSEffect*& tmseffect); |
|
36 gint SetParentEffect(TMSEffect*& parenteffect); |
|
37 |
|
38 private: |
|
39 TMSGlobalGainEffectImpl(); |
|
40 gint PostConstruct(); |
|
41 }; |
|
42 |
|
43 } //namespace TMS |
|
44 |
|
45 #endif // TMS_GLOBAL_GAIN_EFFECT_IMPL_H |
|
46 |
|
47 // End of file |