os/ossrv/syslibsapitest/syslibssvs/ecom/inc/T_ECOMServer.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-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: 
    15 *
    16 */
    17 
    18 
    19 
    20 /*@{*/
    21 _LIT(KDataImplInf,		"CImplementationInformation");
    22 _LIT(KDataEComResParam,	"TEComResolverParams");
    23 _LIT(KDataEComSession,	"REComSession");
    24 /*@}*/
    25 
    26 inline CT_ECOMServer::CT_ECOMBlock::CT_ECOMBlock()
    27     {
    28     }
    29 
    30 inline CT_ECOMServer::CT_ECOMBlock::~CT_ECOMBlock()
    31     {
    32     }
    33 
    34 inline CDataWrapper* CT_ECOMServer::CT_ECOMBlock::CreateDataL( const TDesC& aData )
    35 	{
    36 	CDataWrapper*	wrapper = NULL;
    37 	if( KDataImplInf() == aData )
    38 		{
    39 		wrapper = CT_ImplementationInformationData::NewL();
    40 		}
    41 	else if( KDataEComResParam() == aData )
    42 		{
    43 		wrapper = CT_EComResolverParamsData::NewL();
    44 		}
    45 	else if( KDataEComSession() == aData )
    46 		{
    47 		wrapper = CT_EComSessionData::NewL();
    48 		}
    49 	return wrapper;
    50 	}
    51 
    52 inline CT_ECOMServer::CT_ECOMServer()
    53     {
    54     }
    55     
    56 inline CT_ECOMServer::~CT_ECOMServer()
    57     {
    58     }
    59 
    60 inline CTestBlockController* CT_ECOMServer::CreateTestBlock()
    61 	{
    62 	return new CT_ECOMBlock();
    63 	}