20
|
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 the License "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 |
|
|
18 |
#ifndef __BEAGLEVARIANT_SOUND_H__
|
|
19 |
#define __BEAGLEVARIANT_SOUND_H__
|
|
20 |
|
|
21 |
#include "shared_sound.h"
|
|
22 |
|
|
23 |
class DDriverBeagleSoundScPddFactory : public DPhysicalDevice
|
|
24 |
{
|
|
25 |
public:
|
|
26 |
|
|
27 |
DDriverBeagleSoundScPddFactory();
|
|
28 |
TInt Install();
|
|
29 |
void GetCaps(TDes8 &aDes) const;
|
|
30 |
TInt Create(DBase*& aChannel, TInt aUnit, const TDesC8* anInfo, const TVersion &aVer);
|
|
31 |
TInt Validate(TInt aUnit, const TDesC8* anInfo, const TVersion &aVer);
|
|
32 |
|
|
33 |
public:
|
|
34 |
|
|
35 |
/** The DFC queue to be used by both the LDD and the PDD to serialise access to the PDD */
|
|
36 |
TDfcQue* iDfcQ;
|
|
37 |
|
|
38 |
};
|
|
39 |
|
|
40 |
#endif
|