idlefw/tsrc/idleint/stubs/aiutility.cpp
branchRCL_3
changeset 27 2c7f27287390
equal deleted inserted replaced
25:9e077f9a342c 27:2c7f27287390
       
     1 /*
       
     2 * Copyright (c) 2010 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 "aiutility.h"
       
    20 #include "caipspropertyobserver.h"
       
    21 #include "caistrparser.h"
       
    22 #include "caicontentitemarrayiterator.h"
       
    23 #include "aipluginsettingsimpl.h"
       
    24 #include "caiplugintool.h"
       
    25 #include "UT_IdleInt.h"
       
    26 
       
    27 //#include <TelephonyInternalPSKeys.h>
       
    28 #include <StartupDomainPSKeys.h>
       
    29 
       
    30 
       
    31 EXPORT_C MAiPSPropertyObserver* AiUtility::CreatePSPropertyObserverL(
       
    32                                             TCallBack aCallBack,
       
    33                                             TUid aCategory,
       
    34                                             TInt aKey )
       
    35 	{
       
    36 	CPSPropertyObserver* observerStub = UT_IdleInt::PSPropertyObserver( aCategory, aKey );
       
    37 	observerStub->SetCallBack( aCallBack );
       
    38 	return observerStub;
       
    39     //return CPSPropertyObserver::NewL( aCallBack, aCategory, aKey );	
       
    40 	}
       
    41 	
       
    42 EXPORT_C MAiStrParser* AiUtility::CreateStrParserL()
       
    43 	{	
       
    44 	return NULL;
       
    45 	}
       
    46 	
       
    47 EXPORT_C MAiContentItemIterator* AiUtility::CreateContentItemArrayIteratorL(
       
    48                                             const TAiContentItem* /*aArray*/,
       
    49                                             TInt /*aCount*/ )
       
    50 	{
       
    51 	return NULL;
       
    52 	}
       
    53 
       
    54 EXPORT_C MAiPluginSettings* AiUtility::CreatePluginSettingsL()
       
    55 	{
       
    56 	return NULL;
       
    57 	}
       
    58 
       
    59 EXPORT_C MAiPluginTool* AiUtility::CreatePluginToolL()
       
    60 	{
       
    61 	return NULL;
       
    62 	}
       
    63 	
       
    64    
       
    65 	
       
    66 // End of File.