localisation/apparchitecture/inc/apsidcheckermap.h
branchSymbian3
changeset 57 b8d18c84f71c
equal deleted inserted replaced
56:aa99f2208aad 57:b8d18c84f71c
       
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // apsidchecker.h
       
    15 //
       
    16 
       
    17 #ifndef __APSIDCHECKERMAP_H__
       
    18 #define __APSIDCHECKERMAP_H__
       
    19 
       
    20 #include <e32base.h>
       
    21 #include <e32hashtab.h>
       
    22 
       
    23 class CAppSidChecker;
       
    24 
       
    25 /** Sid checker map
       
    26 
       
    27 This Maps application type uids to Instances of the CAppSidChecker interface,
       
    28 loading them if neccessary.
       
    29 
       
    30 @internalComponent */
       
    31 NONSHARABLE_CLASS(RSidCheckerMap) : public RHashMap<TUint,CAppSidChecker*>
       
    32 	{
       
    33 public:	
       
    34 	RSidCheckerMap( TCallBack aRescanCallBack );
       
    35 	
       
    36 	CAppSidChecker& FindSidCheckerL(TUid aAppType);
       
    37 	void Close(); //lint !e1511 Member hides non-virtual member
       
    38 private:
       
    39 	TCallBack iRescanCallBack;
       
    40 	};
       
    41 
       
    42 
       
    43 #endif	// __APSIDCHECKERMAP_H__
       
    44