systemswstubs/startupadaptationstub/inc/sastubeventsender.h
branchRCL_3
changeset 44 b5894bb67e73
parent 35 37b610eb7fe3
equal deleted inserted replaced
35:37b610eb7fe3 44:b5894bb67e73
     1 /*
       
     2 * Copyright (c) 2006 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:  Declaration of MSAStubEventSender interface class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __SASTUBEVENTSENDER_H__
       
    20 #define __SASTUBEVENTSENDER_H__
       
    21 
       
    22 #include <e32def.h>
       
    23 
       
    24 /**
       
    25  *  Interface representing object capable of sending Startup Adaptation events.
       
    26  *
       
    27  *  @lib None
       
    28  *  @since S60 4.0
       
    29  */
       
    30 class MSAStubEventSender
       
    31     {
       
    32 
       
    33 public:
       
    34 
       
    35     /**
       
    36      * Send an event.
       
    37      *
       
    38      * @since S60 4.0
       
    39      * @param aEvent Identifies the event to send.
       
    40      * @param aArg Optional paraneter for the event.
       
    41      */
       
    42     virtual void SendEvent( const TInt aEvent, const TInt aArg ) = 0;
       
    43 
       
    44     };
       
    45 
       
    46 #endif // __SASTUBEVENTSENDER_H__