presencefwsimpleadpt/inc/msimpleplugintestobs.h
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     1 /*
       
     2 * Copyright (c) 2007 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:    Presence FW SIMPLE plugin test suite
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef MSIMPLEPLUGINTESTOBS_H
       
    22 #define MSIMPLEPLUGINTESTOBS_H
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 
       
    27 /**
       
    28  * MSimplePluginTestObs
       
    29  *
       
    30  *  SIMPLE plugin tester observer for active object testing
       
    31  *
       
    32  *  @lib simpleplugin
       
    33  *  @since s60 v5.0
       
    34  */
       
    35 
       
    36 class MSimplePluginTestObs
       
    37     {
       
    38 
       
    39 public:
       
    40 
       
    41     /**
       
    42      * Test callback in the begin of RunL or callback
       
    43      */
       
    44     virtual void TestCallbackInRunL( 
       
    45         TInt aStatus, TInt aState, TInt aAuxInt, const TDesC& aAuxStr) = 0;        
       
    46         
       
    47     /**
       
    48      * Test callback before new asynch request
       
    49      */ 
       
    50     virtual void TestCallbackAsynchL( 
       
    51         TInt aStatus, TInt aState, TInt aAuxInt, const TDesC& aAuxStr) = 0;
       
    52                    
       
    53 
       
    54     };
       
    55 
       
    56 #endif
       
    57 
       
    58 // End of File