Update contrib.
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Audio Output Custom Interface Handler class
19 #include "AudioOutputCI.h"
20 #include <mmfcontrollerframework.h>
22 class CAudioOutputCustomInterfaceHandler : public CActive
26 * Two-phased constructor.
28 static CAudioOutputCustomInterfaceHandler* NewL();
31 * Request to generate event
32 * @aEvent The event to generate
33 * @aError The error to report with the event
36 void HandleRequest(TMMFMessage& aMessage);
38 virtual ~CAudioOutputCustomInterfaceHandler();
43 * C++ default constructor.
45 CAudioOutputCustomInterfaceHandler();
48 * By default Symbian 2nd phase constructor is private.
57 * Used to complete a request
59 void Ready(const TInt aStatus);
63 TMMFMessage* iMessage;