srsf/sispeechrecognitiondata/inc/nsssispeechrecognitiondatatest.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2002 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:  This file contains definition of the SISpeechRecognitionDataTest structure and API.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __SRSIATA_TEST_H__
       
    20 #define __SRSIATA_TEST_H__
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 
       
    26 /**
       
    27 *  Class to encapsulate diagnostic parameter values.
       
    28 *
       
    29 *  @lib SpeechRecognitionData.lib
       
    30 *  @since 2.5
       
    31 */
       
    32 
       
    33 class TSIDiagnostic
       
    34 {
       
    35 public:// Constructors and destructor
       
    36         /**
       
    37         * Two-phased constructor.
       
    38         */
       
    39 	IMPORT_C TSIDiagnostic();
       
    40         /**
       
    41         * Destructor.
       
    42         */
       
    43 	IMPORT_C ~TSIDiagnostic();
       
    44 
       
    45 public:
       
    46 	TInt32 iSNR;		// signal to noise ratio
       
    47 	TBool iAccepted;
       
    48 };
       
    49 
       
    50 
       
    51 #endif