uifw/AvKon/aknconf/src/aknconfapplication.cpp
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2009 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 
       
    19 // INCLUDE FILES
       
    20 #include "aknconf.hrh"
       
    21 #include "aknconfdocument.h"
       
    22 #include "aknconfapplication.h"
       
    23 
       
    24 // ============================ MEMBER FUNCTIONS ===============================
       
    25 
       
    26 // -----------------------------------------------------------------------------
       
    27 // CAknConfApplication::CreateDocumentL()
       
    28 // Creates CApaDocument object
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 CApaDocument* CAknConfApplication::CreateDocumentL()
       
    32     {
       
    33     // Create an aknconf document, and return a pointer to it
       
    34     return CAknConfDocument::NewL(*this);
       
    35     }
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // CAknConfApplication::AppDllUid()
       
    39 // Returns application UID
       
    40 // -----------------------------------------------------------------------------
       
    41 //
       
    42 TUid CAknConfApplication::AppDllUid() const
       
    43     {
       
    44     // Return the UID for the aknconf application
       
    45     return KUidaknconfApp;
       
    46     }
       
    47 
       
    48 // End of File