mobilemessaging/mmsui/notviewerinc/NotViewerApp.h
branchRCL_3
changeset 60 7fdbb852d323
parent 0 72b543305e3a
equal deleted inserted replaced
57:ebe688cedc25 60:7fdbb852d323
       
     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:  
       
    15 *     MMS Notification Viewer Application class definition.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef NOTVIEWERAPP_H
       
    22 #define NOTVIEWERAPP_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <aknapp.h>                 // CAknApplication
       
    26 
       
    27 // CONSTANTS
       
    28 const TUid KUidNotViewer = { 0x101F86A0 }; 
       
    29 // Note that the UID values are recorded in three places:
       
    30 // - CPP source file (as pragma data_seg)
       
    31 // - header file (below, as a constant for AppDllUid() method)
       
    32 // - MMP file (i.e. also in the makefile)
       
    33 
       
    34 // FORWARD DECLARATION
       
    35 
       
    36 class CApaAppServer;
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 *  CNotViewerApplication class
       
    42 *  Needed by the EIKON framework
       
    43 */
       
    44 class CNotViewerApplication : public CAknApplication
       
    45     {
       
    46     private:
       
    47         
       
    48         /**
       
    49         * From CApaApplication.
       
    50         */
       
    51         CApaDocument* CreateDocumentL();
       
    52 
       
    53         /**
       
    54         * From CApaApplication.
       
    55         */
       
    56         TUid AppDllUid() const;
       
    57         
       
    58         /**
       
    59         * Called by CEikonEnv when new server application is created 
       
    60         */
       
    61         void NewAppServerL( CApaAppServer*& aAppServer );
       
    62 
       
    63     };
       
    64 
       
    65 #endif      //  NOTVIEWERAPP_H
       
    66   
       
    67 // End of File