os/security/cryptomgmtlibs/securityutils/inc/secsettingsclient.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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