os/mm/mmhais/a3facl/src/shared/a3fbackdooraccess.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 
     2 // Copyright (c) 2009 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:
    15 //
    16 
    17 #ifndef A3FBACKDOORACCESS_H
    18 #define A3FBACKDOORACCESS_H
    19 
    20 /*
    21 This class is to give access to various a3f interfaces from the CustomInterface()
    22 call. It is intended for testing purposes, and is not for general use.
    23 */
    24 
    25 const TUid KA3FBackdoorAccessIfUid = {0x10286696};
    26 
    27 // forward decs
    28 class MAudioContext;
    29 class MAudioStream;
    30 class MAudioProcessingUnit;
    31 
    32 class MA3FBackdoorAccessIf
    33 	{
    34 public:
    35 	virtual MAudioContext* AudioContext() = 0;
    36 	virtual MAudioStream* AudioStream() = 0;
    37 	virtual MAudioProcessingUnit* ProcessingUnit(TUid aType) = 0;
    38 	};
    39 
    40 #endif // A3FBACKDOORACCESS_H
    41