resourcemgmt/hwresourcesmgr/test/multiclient/HWRMLightTestF/src/HWRMLightTestFapplication.cpp
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 
       
    19 #include "HWRMLightTestFdocument.h"
       
    20 #include "HWRMLightTestFapplication.h"
       
    21 
       
    22 // UID for the application; this should correspond to the uid defined in the mmp file
       
    23 const TUid KUidHWRMLightTestFApp = {0x10005B92};
       
    24 
       
    25 CApaDocument* CHWRMLightTestFApplication::CreateDocumentL()
       
    26     {  
       
    27     // Create an HWRMLightTestF document, and return a pointer to it
       
    28 	return (static_cast<CApaDocument*>(CHWRMLightTestFDocument::NewL(*this))); 
       
    29     }
       
    30 
       
    31 TUid CHWRMLightTestFApplication::AppDllUid() const
       
    32     {
       
    33     // Return the UID for the HWRMLightTestF application
       
    34     return KUidHWRMLightTestFApp;
       
    35     }
       
    36     
       
    37