speechsrv_plat/vas_api/inc/nssvasmtagreference.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2002-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:  MNssTagReference is an abstraction for a voice tag reference. 
       
    15 *               MNssTagReference consist of a tag name, which can be
       
    16 *               used to receive the full tag when need. 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef NSSVASMTAGREFERENCE_H
       
    22 #define NSSVASMTAGREFERENCE_H
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 /**
       
    27 * MNssTagReference is the interface class for a tag reference.
       
    28 * From a tagreference a full tag can be retrieved with
       
    29 * the GetTag(MNssGetTagClient* aClient,MNssTagReference* aTagRef);
       
    30 * method.
       
    31 * @lib NssVASApi.lib
       
    32 * @since 2.0
       
    33 */
       
    34 class MNssTagReference
       
    35     {
       
    36     public:
       
    37     
       
    38         /**
       
    39         * Get the tagname
       
    40         * @since 2.0
       
    41         * @return tagname for this tag
       
    42         */
       
    43         virtual TDesC& TagName()=0; 
       
    44 
       
    45         /**
       
    46         * virtual destructor for proper clean up
       
    47         */
       
    48     	virtual ~MNssTagReference(){}
       
    49     };
       
    50 
       
    51 #endif // NSSVASMTAGREFERENCE_H
       
    52 
       
    53 // End of file