speechsrv_plat/vas_api/inc/nssvasmtagselecthandler.h
changeset 13 57b735022c18
parent 1 b13cd05eeb2f
equal deleted inserted replaced
1:b13cd05eeb2f 13:57b735022c18
     1 /*
       
     2 * Copyright (c) 2003 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:  The MNssTagSelectHandler interface class handles voice tag select 
       
    15 *                event, generaed when a voice tag is selected as a result of
       
    16 *                recognition via MNssRecognitionHandler::SelectTag().
       
    17 *                To receive the event the client must register via
       
    18 *                MNssTagSelectNotification::Register().
       
    19 *				 The client is responsible for deleting the returned voice tag.
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 #ifndef MNSSTAGSELECTHANDLER_H
       
    25 #define MNSSTAGSELECTHANDLER_H
       
    26 
       
    27 // INCLUDES
       
    28 
       
    29 #include "nssvasmtag.h"
       
    30 
       
    31 // CLASS DEFINITIONS
       
    32 
       
    33 /**
       
    34 *  Voice Tag Selection Handler class.
       
    35 *  Handles the voice tag select notification event generated by
       
    36 *  MNssRecognitionHandler::SelectTag(). The client is resonsible for deleting the
       
    37 *  returned voice tag.
       
    38 *
       
    39 *  @lib NssVASApi.lib
       
    40 *  @since 2.0
       
    41 */
       
    42 
       
    43 class MNssTagSelectHandler
       
    44 {
       
    45 
       
    46 public:
       
    47 
       
    48     /**
       
    49     * Handle Tag Select Event - Event indicating a voice tag has been selected.
       
    50     * @since 2.0
       
    51     * @param aClientTag The voice tag which has been selected. The client is
       
    52 	*                   resonsible for deleting aClientTag.
       
    53     * @return void
       
    54     */
       
    55 	virtual void HandleTagSelect( MNssTag* aClientTag ) = 0;
       
    56 
       
    57 };
       
    58 
       
    59 #endif //  MTAGSELECTHANDLER_H
       
    60 
       
    61 // End of File