First public contribution.
2 * Copyright (c) 2006-2009 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.
28 #ifndef AUDIOCONTEXTFACTORY_H
29 #define AUDIOCONTEXTFACTORY_H
33 #include <a3f/a3fbase.h>
38 * An interface to an AudioContextFactory.
40 * Audio Context Factory is the entry point to the low level audio functionality of the device.
41 * Audio Context Factory is used for creating new audio contexts.
43 * @lib AudioContextFactory.lib
45 class CAudioContextFactory : public CBase
49 * Constructs and returns a pointer to a new CAudioContextFactory object.
51 * @return CAudioContextFactory* - on success, pointer to new class instance.
52 * This call returns ownership, as in the standard NewL() pattern.
54 IMPORT_C static CAudioContextFactory* NewL();
59 * Deletes all objects and releases all resource owned by this instance.
61 IMPORT_C virtual ~CAudioContextFactory();
64 * Creates a new audio context.
66 * The context must be removed using DeleteAudioContext() when it is no longer needed.
67 * @param aContext on return contains a reference to the created context.
68 * @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
70 IMPORT_C TInt CreateAudioContext(MAudioContext*& aContext);
74 * Deletes the audio context.
75 * All processing units have to be removed from the context by the client.
76 * before the context is removed. This is a null-operation if aContext is NULL on DeleteAudioContext being called.
77 * aContext is set to NULL on completion of the call.
78 * @param aContext a pointer to the context to remove.
79 * @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
81 IMPORT_C void DeleteAudioContext(MAudioContext*& aContext);
87 CAudioContextFactory();
89 * Second phase contructor.
94 #endif // AUDIOCONTEXTFACTORY_H