remotemgmt_plat/terminal_security_device_lock_api/inc/TerminalControl.h
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2000 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 "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: definition of dm constants/exported methods
       
    15 * 	This is part of remotemgmt_plat.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __TERMINALCONTROL_H__
       
    21 #define __TERMINALCONTROL_H__
       
    22 
       
    23 /**
       
    24 *  RTerminalControl class to establish TerminalControl server connection
       
    25 */
       
    26 
       
    27 class RTerminalControl : public RSessionBase
       
    28 {
       
    29 
       
    30 	public:
       
    31 
       
    32 	    /**
       
    33 		* Connect Connects client side to policy engine server
       
    34 	    * @return KErrNone Symbian error code
       
    35         */
       
    36 		IMPORT_C TInt Connect();
       
    37 
       
    38 	    /**
       
    39 		* Close Close server connection
       
    40         */
       
    41 		IMPORT_C void Close();
       
    42 
       
    43 };
       
    44 
       
    45 #endif //__TERMINALCONTROL_H__