sl@0: /* sl@0: * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: This file contains definitions of common audio effects data structures. sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef AUDIOEFFECTDATA_H sl@0: #define AUDIOEFFECTDATA_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * This class defines the common effect data sl@0: * sl@0: * @lib EffectBase.lib sl@0: * @since 3.0 sl@0: */ sl@0: class TEfCommon sl@0: { sl@0: public: // Constructor and Destructor sl@0: sl@0: /** sl@0: * Constructor. sl@0: */ sl@0: TEfCommon() : sl@0: iEnabled(EFalse), iEnforced(EFalse), iHaveUpdateRights(ETrue) {} sl@0: sl@0: public: // Data sl@0: // Flag to indicate whether the effect is enabled or not sl@0: TBool iEnabled; sl@0: // Flag to indicate wheter the effect is enforced sl@0: TInt8 iEnforced; sl@0: // Flag to indicate wheter the effect current has update rights sl@0: TBool iHaveUpdateRights; sl@0: }; sl@0: sl@0: #endif // AUDIOEFFECTDATA_H sl@0: sl@0: // End of File