cryptomgmtlibs/securityutils/inc/secsettingsclient.h
changeset 31 5b5ca9f4f7b4
equal deleted inserted replaced
30:cf642210ecb7 31:5b5ca9f4f7b4
       
     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 * Client-side API via which the Central Repository server is accessed.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @publishedPartner
       
    23  @released
       
    24 */
       
    25 
       
    26 #ifndef SECSETTINGSCLIENT_H
       
    27 #define SECSETTINGSCLIENT_H
       
    28 
       
    29 
       
    30 #include <scs/scsclient.h>
       
    31 #include <securityerr.h>
       
    32 
       
    33 
       
    34 namespace SecuritySettingsServer
       
    35 	{
       
    36 
       
    37 
       
    38 class RSecSettingsSession : public RScsClientBase
       
    39 /**
       
    40 	This class is used to establish a connection with
       
    41 	the Central Repository server.
       
    42  */
       
    43 	{
       
    44 public:
       
    45 	IMPORT_C RSecSettingsSession();
       
    46 	IMPORT_C TInt Connect();
       
    47 	IMPORT_C void Close();
       
    48 	
       
    49 	IMPORT_C TInt SettingValueL(TUid aUidRepository, TUint32 aKey);
       
    50 	};
       
    51 
       
    52 
       
    53 	} // End of namespace SecuritySettingsServer
       
    54 
       
    55 #endif	// #ifndef SECSETTINGSCLIENT_H
       
    56