speechsrv_plat/ui_voice_recognition_api/inc/vuicvoicerecog.h
branchRCL_3
changeset 23 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
22:cad71a31b7fc 23: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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef VUICVOICERECOG_H
       
    19 #define VUICVOICERECOG_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32base.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Loads the resource file for voice recognition
       
    30 *  This class must be instantiated before performing recognition
       
    31 * @lib VoiceUiRecognition.lib
       
    32 * @since 2.8
       
    33 */
       
    34 class CVoiceRecog : public CBase
       
    35     {
       
    36 
       
    37     public:  // Constructors and destructor
       
    38         
       
    39         /**
       
    40         * Two-phased constructor.
       
    41         */
       
    42         IMPORT_C static CVoiceRecog* NewLC();
       
    43         IMPORT_C static CVoiceRecog* NewL(); 
       
    44 
       
    45         /**
       
    46         * Destructor.
       
    47         */
       
    48         virtual ~CVoiceRecog();
       
    49 
       
    50 
       
    51     private:
       
    52 
       
    53         /**
       
    54         * By default constructor is private.
       
    55         */
       
    56         void ConstructL();
       
    57 
       
    58         /**
       
    59         * C++ default constructor.
       
    60         */
       
    61         CVoiceRecog();
       
    62 
       
    63     private: // Data
       
    64     
       
    65     };
       
    66 
       
    67 #endif  // VUICVOICERECOG_H
       
    68 
       
    69 // End of File
       
    70 
       
    71