devicediagnostics/devdiagapp/src/devdiagappapplication.cpp
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2007 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: Implementation of diagnostics components
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "devdiagappdocument.h"
       
    20 #include "devdiagappapplication.h"
       
    21 
       
    22 // UID for the application, this should correspond to the uid defined in the mmp file
       
    23 static const TUid KUidDevDiagAppApp = {0x2000E542};
       
    24 
       
    25 CApaDocument* CDevDiagAppApplication::CreateDocumentL()
       
    26     {  
       
    27    // LOGSTRING(CDevDiagAppApplication::CreateDocumentL);
       
    28     // Create an DevDiagApp document, and return a pointer to it
       
    29     CApaDocument* document = CDevDiagAppDocument::NewL(*this);
       
    30     return document;
       
    31     }
       
    32 
       
    33 TUid CDevDiagAppApplication::AppDllUid() const
       
    34     {
       
    35     // Return the UID for the DevDiagApp application
       
    36     //LOGSTRING("CDevDiagAppApplication::AppDllUid");
       
    37     return KUidDevDiagAppApp;
       
    38     }
       
    39