srsf/nssvasapi/nssvasdb/inc/nssvasmintercomptagmgrclient.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2002 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:  MNssInterCompTagMgrClient provides the public callback interfaces 
       
    15 *				 for internal VAS clients that want to retrieve tags from the VAS Db. 
       
    16 *				 The client must inherit and override the following methods to 
       
    17 *				 handle VAS Db responses for retrieving tag(s).
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #ifndef MNSSINTERCOMPTAGMGRCLIENT_H
       
    23 #define MNSSINTERCOMPTAGMGRCLIENT_H
       
    24 
       
    25 #include <e32std.h>
       
    26 
       
    27 
       
    28 
       
    29 class CNssTag;
       
    30 
       
    31 // CLASS DECLARATIONS
       
    32 /**
       
    33 *  MNssInterCompTagMgrClient defines the call back methods used by VAS DB.
       
    34 *  @lib NssVASApi.lib
       
    35 *  @since 2.0
       
    36 */
       
    37 
       
    38 class MNssInterCompTagMgrClient
       
    39 {
       
    40 public:
       
    41    
       
    42    /**
       
    43    * Callback to indicate GetTag successed.
       
    44    * client has to ResetAndDestroy() after using the list.
       
    45    * @since 2.0
       
    46    * @param aTag tag returned
       
    47    * @param aErrorCode KErrNone if  getting of tag was successfull
       
    48    * @return None
       
    49    */
       
    50    virtual void GetTagCompleted( CNssTag* aTag, TInt aErrorCode ) = 0;
       
    51 };
       
    52 
       
    53 #endif