photosgallery/logging/app/src/glxloggingapplication.cpp
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2008-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:    Logging utility application for MC Photos
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDES
       
    22 #include "glxloggingdocument.h"
       
    23 #include "glxloggingapplication.h"
       
    24 
       
    25 // CONSTANTS
       
    26 static const TUid KUidGlxLoggingApp = {0x2000A7BD};
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CGlxLoggingApplication::CreateDocumentL
       
    30 // -----------------------------------------------------------------------------
       
    31 CApaDocument* CGlxLoggingApplication::CreateDocumentL()
       
    32     {  
       
    33     // Create an GlxLogging document, and return a pointer to it
       
    34     CApaDocument* document = CGlxLoggingDocument::NewL(*this);
       
    35     return document;
       
    36     }
       
    37 
       
    38 // -----------------------------------------------------------------------------
       
    39 // CGlxLoggingApplication::AppDllUid
       
    40 // -----------------------------------------------------------------------------
       
    41 TUid CGlxLoggingApplication::AppDllUid() const
       
    42     {
       
    43     // Return the UID for the GlxLogging application
       
    44     return KUidGlxLoggingApp;
       
    45     }
       
    46