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 is the definition of the Audio Equalizer effect observer class. sl@0: * sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef MAUDIOEQUALIZEROBSERVER_H sl@0: #define MAUDIOEQUALIZEROBSERVER_H sl@0: sl@0: // INCLUDES sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * This is the equalizer effect observer class. Object interested in receiving notification sl@0: * when the CAudioEqualizer object changes state should derive from this class and implement sl@0: * its interface. sl@0: * sl@0: * @since 3.0 sl@0: */ sl@0: sl@0: class MAudioEqualizerObserver : public MAudioEffectObserver sl@0: { sl@0: public: sl@0: static const TUint KBand1Changed = KSpecificEffectBase + 1; sl@0: static const TUint KBand2Changed = KSpecificEffectBase + 2; sl@0: static const TUint KBand3Changed = KSpecificEffectBase + 3; sl@0: static const TUint KBand4Changed = KSpecificEffectBase + 4; sl@0: static const TUint KBand5Changed = KSpecificEffectBase + 5; sl@0: static const TUint KBand6Changed = KSpecificEffectBase + 6; sl@0: static const TUint KBand7Changed = KSpecificEffectBase + 7; sl@0: static const TUint KBand8Changed = KSpecificEffectBase + 8; sl@0: static const TUint KBand9Changed = KSpecificEffectBase + 9; sl@0: static const TUint KBand10Changed = KSpecificEffectBase + 10; sl@0: static const TUint KBand11Changed = KSpecificEffectBase + 11; sl@0: static const TUint KBand12Changed = KSpecificEffectBase + 12; sl@0: }; sl@0: sl@0: #endif // of MAUDIOEQUALIZEROBSERVER_H sl@0: sl@0: // End of File