srsf/speechsynthesis/tsrc/texttospeech/inc/texttospeechdocument.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 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 
       
    19 #ifndef TEXTTOSPEECHDOCUMENT_H
       
    20 #define TEXTTOSPEECHDOCUMENT_H
       
    21 
       
    22 #include <akndoc.h>
       
    23         
       
    24 class CEikAppUi;
       
    25 
       
    26 /**
       
    27 * A CAknDocument-derived class is required by the S60 application 
       
    28 * framework. It is responsible for creating the AppUi object. 
       
    29 */
       
    30 class CTextToSpeechDocument : public CAknDocument
       
    31     {
       
    32 
       
    33     public: 
       
    34     
       
    35         // constructor
       
    36         static CTextToSpeechDocument* NewL( CEikApplication& aApp );
       
    37         
       
    38         // destructor.
       
    39         virtual ~CTextToSpeechDocument();
       
    40         
       
    41     private: 
       
    42     
       
    43         // constructors
       
    44         CTextToSpeechDocument( CEikApplication& aApp );
       
    45         void ConstructL();
       
    46     
       
    47     public: 
       
    48     
       
    49         // from base class CEikDocument
       
    50         CEikAppUi* CreateAppUiL();
       
    51         
       
    52     };
       
    53 
       
    54 #endif // TEXTTOSPEECHDOCUMENT_H