messagingfw/senduiservices/launcher/inc/senduilauncherdoc.h
branchRCL_3
changeset 22 d2c4c66342f3
parent 21 e5b3a2155e1a
child 23 d51193d814ea
equal deleted inserted replaced
21:e5b3a2155e1a 22:d2c4c66342f3
     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:   Server application for launching SendUi with low 
       
    15 *                capability requirements.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef C_SENDUILAUNCHERDOC_H
       
    22 #define C_SENDUILAUNCHERDOC_H
       
    23 
       
    24 
       
    25 #include <AknDoc.h>
       
    26 
       
    27 
       
    28 class CSendUiLauncherAppUi;
       
    29 class CEikApplication;
       
    30 
       
    31 /**
       
    32  *  Document for SendUiLauncher
       
    33  *
       
    34  *  @since S60 v.3.2
       
    35  */
       
    36 class CSendUiLauncherDocument : public CAknDocument
       
    37     {
       
    38 
       
    39 public:
       
    40 
       
    41     static CSendUiLauncherDocument* NewL(CEikApplication& aApp);
       
    42 
       
    43     static CSendUiLauncherDocument* NewLC(CEikApplication& aApp);
       
    44 
       
    45     virtual ~CSendUiLauncherDocument();
       
    46 
       
    47 
       
    48     /**
       
    49      * Create a CSendUiServerAppUi object and return a pointer to it
       
    50      *
       
    51      * @since S60 v3.2
       
    52      * @return a pointer to the created instance of the AppUi created
       
    53      */
       
    54      CEikAppUi* CreateAppUiL();
       
    55      
       
    56 private:
       
    57 
       
    58     CSendUiLauncherDocument(CEikApplication& aApp);
       
    59 
       
    60     };
       
    61 #endif // C_SENDUILAUNCHERDOC_H