equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: This file contains definitions of common audio effects data structures. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef AUDIOEFFECTDATA_H |
|
21 #define AUDIOEFFECTDATA_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32std.h> |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * This class defines the common effect data |
|
30 * |
|
31 * @lib EffectBase.lib |
|
32 * @since 3.0 |
|
33 */ |
|
34 class TEfCommon |
|
35 { |
|
36 public: // Constructor and Destructor |
|
37 |
|
38 /** |
|
39 * Constructor. |
|
40 */ |
|
41 TEfCommon() : |
|
42 iEnabled(EFalse), iEnforced(EFalse), iHaveUpdateRights(ETrue) {} |
|
43 |
|
44 public: // Data |
|
45 // Flag to indicate whether the effect is enabled or not |
|
46 TBool iEnabled; |
|
47 // Flag to indicate wheter the effect is enforced |
|
48 TInt8 iEnforced; |
|
49 // Flag to indicate wheter the effect current has update rights |
|
50 TBool iHaveUpdateRights; |
|
51 }; |
|
52 |
|
53 #endif // AUDIOEFFECTDATA_H |
|
54 |
|
55 // End of File |