uiservicetab/vimpststorage/tsrc/vimpststorage_ut/stubs/s_CVPbkContactOperationBase.h
branchRCL_3
changeset 22 3104fc151679
parent 21 2b7283837edb
child 23 9a48e301e94b
equal deleted inserted replaced
21:2b7283837edb 22:3104fc151679
     1 /*
       
     2 * Copyright (c) 2002-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:  
       
    15 :                
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef STUBVPBKCONTACTOPERATIONBASE_H
       
    22 #define STUBVPBKCONTACTOPERATIONBASE_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <MVPbkContactOperationBase.h>
       
    26 #include <e32std.h>
       
    27 
       
    28 // CLASS DECLARATIONS
       
    29 
       
    30 /**
       
    31  * Virtual Phonebook abtract asynchronous contact operation.
       
    32  * This interface is used as a handle to asynchronous contact operations.
       
    33  * Clients should keep a reference to the handle during the asynchronous 
       
    34  * operation to be able to delete and cancel the operation before it
       
    35  * completes.
       
    36  */
       
    37 class CVPbkContactOperationBaseStub : public CBase, public MVPbkContactOperationBase
       
    38     {
       
    39     public:  // Interface
       
    40         /**
       
    41          * Destructor. Cancels this operation and releases any 
       
    42          * resources held by it.
       
    43          */
       
    44         ~CVPbkContactOperationBaseStub() {}
       
    45         
       
    46         CVPbkContactOperationBaseStub() 
       
    47         {
       
    48         	
       
    49         }
       
    50 
       
    51         
       
    52     };
       
    53 
       
    54 #endif // STUBVPBKCONTACTOPERATIONBASE_H
       
    55 
       
    56 // End of File