srsf/nssvasapi/nssvascore/inc/nssvasctagreference.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2004-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:  CNssTagMgr implements the MNssTagMgr interface. In addition, it 
       
    15 *               also provides methods for internal use by VAS components.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef NSSVASCTAGREFERENCE_H
       
    21 #define NSSVASCTAGREFERENCE_H
       
    22 
       
    23 #include <e32std.h>
       
    24 #include <e32base.h>
       
    25 #include "nssvasmtagreference.h"
       
    26 
       
    27 // CLASS DECLARATIONS
       
    28 /**
       
    29 *  CNssTagReference is a tag object, which only contains the name and the ID.
       
    30 *  What has been dropped is RRD data and data required for speech actions.
       
    31 *  @lib NssVASApi.lib
       
    32 *  @since 2.8
       
    33 */
       
    34 class CNssTagReference: public CBase, public MNssTagReference
       
    35 {
       
    36 public:
       
    37    CNssTagReference();
       
    38 
       
    39    ~CNssTagReference();
       
    40 
       
    41    TDesC& TagName();
       
    42    void   SetTagNameL(const TDesC& aTagName);
       
    43    TInt   TagId();
       
    44    void   SetTagId(TInt aTagId);
       
    45    
       
    46 private:
       
    47    HBufC* iTagName;
       
    48    TInt   iTagId;
       
    49 };
       
    50 
       
    51 #endif // NSSVASCTAGREFERENCE_H
       
    52 
       
    53 // End of file