Update contrib.
1 // Copyright (c) 2006-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.
21 #ifndef __BASSNDSTORE_H__
22 #define __BASSNDSTORE_H__
25 #include <centralrepository.h>
29 This class encapsulates storing and retrieving sound data
30 to and from persistent storage.
32 NONSHARABLE_CLASS(CBaSsndStore) : public CBase
35 static CBaSsndStore* NewL();
38 TInt GetSound(const TBaSystemSoundType& aSoundType,
39 TBaSystemSoundInfo& aInfo) const;
40 TInt GetSoundCategory(const TBaSystemSoundUid& aSSUid,
41 CArrayFixFlat<TBaSystemSoundInfo>& aArray) const;
42 void SetSoundL(const TBaSystemSoundInfo& aInfo) const;
45 // These are protected to facilitate testing concurrent SetSound
49 virtual void KeyOfSoundTypeL(TBaSystemSoundType& aSoundType, TUint32& aKey) const;
50 virtual void SetSoundInTransactionL(TBaSystemSoundType& aSoundType,
51 const TDesC8& aDes8) const;
54 void GetSoundL(const TBaSystemSoundType& aSoundType,
55 TBaSystemSoundInfo& aInfo) const;
56 void GetSoundCategoryL(const TBaSystemSoundUid& aSSUid,
57 CArrayFixFlat<TBaSystemSoundInfo>& aArray) const;
58 void FindKeyL(const TBaSystemSoundType& aSoundType,
60 TBool aNoLeaveIfNotFound) const;
61 void FindKeyL(const TBaSystemSoundUid& aSSUid, RArray<TUint32>& aKeys) const;
62 void FindNextEmptySlotL(TUint32& aKey) const;
65 CRepository* iRepository;