idlehomescreen/examples/mcsexample/src/MCSExampleApplication.cpp
branchRCL_3
changeset 102 ba63c83f4716
parent 93 b01126ce0bec
child 103 966d119a7e67
equal deleted inserted replaced
93:b01126ce0bec 102:ba63c83f4716
     1 /*
       
     2 * Copyright (c) 2010 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 // INCLUDE FILES
       
    19 #include "MCSExample.hrh"
       
    20 #include "MCSExampleDocument.h"
       
    21 #include "MCSExampleApplication.h"
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CMCSExampleApplication::CreateDocumentL()
       
    27 // Creates CApaDocument object
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 CApaDocument* CMCSExampleApplication::CreateDocumentL()
       
    31     {
       
    32     // Create an MCSExample document, and return a pointer to it
       
    33     return CMCSExampleDocument::NewL(*this);
       
    34     }
       
    35 
       
    36 // -----------------------------------------------------------------------------
       
    37 // CMCSExampleApplication::AppDllUid()
       
    38 // Returns application UID
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 TUid CMCSExampleApplication::AppDllUid() const
       
    42     {
       
    43     // Return the UID for the MCSExample application
       
    44     return KUidMCSExampleApp;
       
    45     }
       
    46 
       
    47 // End of File