voiceui/voiceuivoicerecognition/inc/vuicabortstate.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VUICABORTSTATE_H
       
    20 #define VUICABORTSTATE_H
       
    21 
       
    22 // INCLUDES
       
    23 #include "vuicstate.h"
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 // CLASS DECLARATION
       
    28 /**
       
    29 * COMMENT
       
    30 */
       
    31 NONSHARABLE_CLASS( CAbortState ) : public CState
       
    32 {
       
    33     public:     // Constructors and destructor
       
    34 
       
    35         /**
       
    36         * Symbian two-phased constructor.
       
    37         */
       
    38         static CAbortState* NewL( CDataStorage& aDataStorage, CUiModel& aUiModel );
       
    39 
       
    40         /**
       
    41         * Destructor.
       
    42         */
       
    43         virtual ~CAbortState();
       
    44                                 
       
    45     public:     // New functions
       
    46     
       
    47         /**
       
    48         * Handles received event
       
    49         * @param Event to be handled
       
    50         */
       
    51         virtual void HandleEventL( TInt aEvent );
       
    52         
       
    53         /**
       
    54         * Executes the state functionality
       
    55         */
       
    56         virtual void ExecuteL();
       
    57          
       
    58     protected:  // New functions
       
    59         
       
    60         /**
       
    61         * C++ default constructor.
       
    62         */
       
    63         CAbortState( CDataStorage& aDataStorage, CUiModel& aUiModel );
       
    64         
       
    65     private:    // Functions
       
    66                 
       
    67     private:    // Data
       
    68 };
       
    69 
       
    70 #endif  // VUICABORTSTATE_H
       
    71 
       
    72 // End of File