common/tools/ats/smoketest/localisation/apparchitecture/apfile/ApLaunchChecker.cpp
changeset 793 0c32c669a39d
child 872 17498133d9ad
equal deleted inserted replaced
792:893b85cda81b 793:0c32c669a39d
       
     1 // Copyright (c) 2005-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 the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include <aplaunchchecker.h>
       
    17 
       
    18 CAppLaunchChecker*	CAppLaunchChecker::NewL(const TUid aUid)
       
    19 /** Create an interface implementation to satisfy the specified interface.
       
    20 @param aUid Com interface implementation UID.
       
    21 @return The new application launch checker object. */
       
    22 	{
       
    23 	TAny* ptr = REComSession::CreateImplementationL(aUid, 
       
    24 		_FOFF(CAppLaunchChecker, iDtor_ID_Key));
       
    25 	return reinterpret_cast<CAppLaunchChecker*> (ptr);
       
    26 	}
       
    27 
       
    28 /** The destruction of interface implementation. */
       
    29 EXPORT_C CAppLaunchChecker::~CAppLaunchChecker()
       
    30 	{
       
    31 	REComSession::DestroyedImplementation(iDtor_ID_Key);
       
    32 	}
       
    33 
       
    34 EXPORT_C void CAppLaunchChecker::Reserved_1()
       
    35 	{
       
    36 	
       
    37 	}
       
    38 
       
    39 EXPORT_C void CAppLaunchChecker::Reserved_2()
       
    40 	{
       
    41 
       
    42 	}
       
    43 
       
    44 EXPORT_C void CAppLaunchChecker::Reserved_3()
       
    45 	{
       
    46 
       
    47 	}