eventsui/eventshandlerui/eventshandler/inc/evthandlerclient.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2008 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:  Client for Events Handler Server
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_EVTHANDLERCLIENT_H
       
    20 #define C_EVTHANDLERCLIENT_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 /**
       
    25  *  Client class for the Event Handler Server.
       
    26  *
       
    27  *  @lib 
       
    28  *  @since S60 v9.1
       
    29  */
       
    30 class REvtHandlerSession : public RSessionBase
       
    31 	{
       
    32 public:
       
    33         /**
       
    34         * Connect to the Event Handler Server
       
    35         */
       
    36 		IMPORT_C TInt Connect();
       
    37 	
       
    38 	    /**
       
    39         * Sends the Event Id to the Event handler Server to perform the 
       
    40 		* required action.
       
    41         * @param aMessage Message containg the Event Id.
       
    42         * @param aAccuracy Accuracy of the Event Id.
       
    43         */
       
    44 		IMPORT_C TInt SendEventId( const TDesC& aMessage, const TInt aAccuracy );
       
    45 	};
       
    46 
       
    47 #endif  // C_EVTHANDLERCLIENT_H
       
    48 
       
    49 // End of File