pnpmobileservices/pnpms/OnlineSupport/src/CCMDocument.cpp
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2003 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:  Contains the implementation of CCMDocument class methods
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "CCMDocument.h"
       
    22 #include "CCMAppUi.h"
       
    23 /*** Begin added by Jarmo Pyrro ***/
       
    24 #include "OnlineSupportLogger.h"
       
    25 #include <bacline.h>
       
    26 /*** End added by Jarmo Pyrro ***/
       
    27 
       
    28 // EXTERNAL DATA STRUCTURES
       
    29 // None
       
    30 
       
    31 // EXTERNAL FUNCTION PROTOTYPES  
       
    32 // None
       
    33 
       
    34 // CONSTANTS
       
    35 // None
       
    36 
       
    37 // MACROS
       
    38 // None
       
    39 
       
    40 // LOCAL CONSTANTS AND MACROS
       
    41 // None
       
    42 
       
    43 
       
    44 // MODULE DATA STRUCTURES
       
    45 // None
       
    46 
       
    47 // LOCAL FUNCTION PROTOTYPES
       
    48 // None
       
    49 
       
    50 // FORWARD DECLARATIONS
       
    51 // None
       
    52 
       
    53 // ============================= LOCAL FUNCTIONS ===============================
       
    54 // None
       
    55 
       
    56 // ============================ MEMBER FUNCTIONS ===============================
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 // CCMDocument::CCMDocument
       
    60 // C++ default constructor can NOT contain any code, that
       
    61 // might leave.
       
    62 // -----------------------------------------------------------------------------
       
    63 //
       
    64 CCMDocument::CCMDocument(
       
    65         CEikApplication& aApp  // CEikApplication reference
       
    66         ) : CAknDocument(aApp)
       
    67     {
       
    68     }
       
    69 
       
    70 // destructor
       
    71 CCMDocument::~CCMDocument()
       
    72     {
       
    73     }
       
    74     
       
    75 // -----------------------------------------------------------------------------
       
    76 // CCMDocument::CreateAppUiL
       
    77 // Creates CCMAppUi object
       
    78 // (other items were commented in a header).
       
    79 // -----------------------------------------------------------------------------
       
    80 //
       
    81 CEikAppUi* CCMDocument::CreateAppUiL()
       
    82     {
       
    83     return new (ELeave) CCMAppUi;
       
    84     }
       
    85 
       
    86 
       
    87 
       
    88 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    89 // None
       
    90 
       
    91 // End of File