fmradio/fmradio/inc/fmradiodocument.h
branchRCL_3
changeset 20 93c594350b9a
parent 0 f3d95d9c00ab
equal deleted inserted replaced
19:cce62ebc198e 20:93c594350b9a
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Definitaion of the CFMRadioDocument class, which
       
    15 *                      handles application data serialization. Owns the Ui 
       
    16 *                      (controller) and the engine (model)
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef FMRADIODOCUMENT_H
       
    22 #define FMRADIODOCUMENT_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <AknDoc.h>
       
    26    
       
    27 // CONSTANTS
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 class  CEikAppUi;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 * Part of the standard application framework. Declares the document class 
       
    36 * for this application.
       
    37 * @since 2.6
       
    38 */
       
    39 class CFMRadioDocument : public CAknDocument
       
    40     {
       
    41     public: // Constructors and destructor
       
    42         /**
       
    43         * Two-phased constructor.
       
    44         * @since 2.6
       
    45         */
       
    46         static CFMRadioDocument* NewL( CEikApplication& aApp );
       
    47         /**
       
    48         * Destructor.
       
    49         * @since 2.6
       
    50         */
       
    51         virtual ~CFMRadioDocument();
       
    52     private: // New functions
       
    53         /**
       
    54         * EPOC default constructor.
       
    55         * @since 2.6
       
    56         */
       
    57         CFMRadioDocument( CEikApplication& aApp );
       
    58     private: // Functions from base classes
       
    59         /**
       
    60         * From CEikDocument, create CFMRadioAppUi "App UI" object.
       
    61         * @since 2.6
       
    62         */
       
    63         CEikAppUi* CreateAppUiL();
       
    64     };
       
    65 
       
    66 #endif
       
    67 
       
    68 // End of File
       
    69