ximpfw/tsrc/tsrcutils/testcaseutils/prfwwaitobserver.h
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     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:  XIMP Framework Test Code prfwwaitobserver.h
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef T_PRFWWAITOBSERVER
       
    21 #define T_PRFWWAITOBSERVER
       
    22 
       
    23 
       
    24 /**
       
    25  * ?one_line_short_description
       
    26  *
       
    27  * ?more_complete_description
       
    28  *
       
    29  * @lib ?library
       
    30  * @since S60 v4.0
       
    31  */
       
    32 class T_MWaitObserver
       
    33     {
       
    34 
       
    35 public:
       
    36 
       
    37     /**
       
    38      * ?description
       
    39      *
       
    40      * @since S60 ?S60_version
       
    41      * @param ?arg1 ?description
       
    42      * @param ?arg2 ?description
       
    43      * @return ?description
       
    44      */
       
    45     virtual void WaitCompleted( TInt aRetVal ) = 0;
       
    46 
       
    47 
       
    48 protected:
       
    49 
       
    50     /**
       
    51      * Protected destructor.
       
    52      * Instancies can't be destroyed via this interface.
       
    53      */
       
    54     virtual ~T_MWaitObserver() {};
       
    55 
       
    56     };
       
    57 
       
    58 
       
    59 
       
    60 #endif // T_PRFWWAITOBSERVER
       
    61 
       
    62