speechsrv_plat/ui_voice_recognition_api/inc/vuicvoicerecogdialog.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2004-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:  Definition of the recognition dialog for clients
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VUICVOICERECOGDIALOG_H
       
    20 #define VUICVOICERECOGDIALOG_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 //  FORWARD DECLARATIONS
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 /**
       
    29 * The voice recognition dialog
       
    30 * @lib VoiceUiRecognition.lib
       
    31 * @since 3.2
       
    32 */
       
    33 class CVoiceRecognitionDialog : public CBase                           
       
    34     {
       
    35     
       
    36     public:     // Constructors and Destructors
       
    37 
       
    38         /**
       
    39         * C++ default constructor.
       
    40         */
       
    41         IMPORT_C CVoiceRecognitionDialog();
       
    42 
       
    43         /**
       
    44         * Destructor.
       
    45         */
       
    46         IMPORT_C virtual ~CVoiceRecognitionDialog();
       
    47 
       
    48     public:     // New functions
       
    49     
       
    50         /**
       
    51         * Executes the dialog
       
    52         * @return Exit status
       
    53         */
       
    54         IMPORT_C TInt ExecuteLD();
       
    55         
       
    56         /**
       
    57         * Stops voice dialling process
       
    58         */
       
    59         IMPORT_C void Cancel();
       
    60         
       
    61    private:     // Data
       
    62 
       
    63    };
       
    64 
       
    65 #endif    // VUICVOICERECOGDIALOG_H
       
    66 
       
    67 // End of File
       
    68