First public contribution.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #ifndef __MDABTHWINFO_H__
18 #define __MDABTHWINFO_H__
23 class CMdaHwInfo : public CBase
27 static CMdaHwInfo* NewL();
29 inline RMdaDevSound::TSoundFormatsSupportedBuf& GetPlayFormatsSupported() {return iPlayFormatsSupported;}
30 inline RMdaDevSound::TCurrentSoundFormatBuf& GetPlayFormat() {return iPlayFormat;}
31 inline RMdaDevSound::TSoundFormatsSupportedBuf& GetRecordFormatsSupported() { return iRecordFormatsSupported;}
32 inline RMdaDevSound::TCurrentSoundFormatBuf& GetRecordFormat() { return iRecordFormat;}
40 RMdaDevSound::TSoundFormatsSupportedBuf iPlayFormatsSupported;
41 RMdaDevSound::TCurrentSoundFormatBuf iPlayFormat;
42 RMdaDevSound::TSoundFormatsSupportedBuf iRecordFormatsSupported;
43 RMdaDevSound::TCurrentSoundFormatBuf iRecordFormat;