voiceui/voiceuivoicerecognition/inc/vuicuimodel.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 VUICUIMODEL_H
       
    20 #define VUICUIMODEL_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CGlobalNote;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 /**
       
    30 * COMMENT
       
    31 */
       
    32 NONSHARABLE_CLASS( CUiModel ) : public CBase
       
    33 {
       
    34     public:     // Constructors and destructor
       
    35 
       
    36         /**
       
    37         * Symbian two-phased constructor.
       
    38         */
       
    39         static CUiModel* NewL();
       
    40 
       
    41         /**
       
    42         * Destructor.
       
    43         */
       
    44         virtual ~CUiModel();
       
    45                                 
       
    46     public:     // New functions
       
    47     
       
    48         /**
       
    49         * Returns note
       
    50         * @return Reference to note object
       
    51         */
       
    52         CGlobalNote& Note() const;
       
    53              
       
    54     private:    // Functions
       
    55         
       
    56         /**
       
    57         * C++ default constructor.
       
    58         */
       
    59         CUiModel();
       
    60         
       
    61         /**
       
    62         * Symbian OS 2nd phase constructor.
       
    63         */
       
    64         virtual void ConstructL();
       
    65                 
       
    66     private:    // Data
       
    67     
       
    68         // Note
       
    69         CGlobalNote*                iNote;
       
    70 };
       
    71 
       
    72 #endif  // VUICUIMODEL_H
       
    73 
       
    74 // End of File