Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 _LIT(KDataImplInf, "CImplementationInformation");
22 _LIT(KDataEComResParam, "TEComResolverParams");
23 _LIT(KDataEComSession, "REComSession");
26 inline CT_ECOMServer::CT_ECOMBlock::CT_ECOMBlock()
30 inline CT_ECOMServer::CT_ECOMBlock::~CT_ECOMBlock()
34 inline CDataWrapper* CT_ECOMServer::CT_ECOMBlock::CreateDataL( const TDesC& aData )
36 CDataWrapper* wrapper = NULL;
37 if( KDataImplInf() == aData )
39 wrapper = CT_ImplementationInformationData::NewL();
41 else if( KDataEComResParam() == aData )
43 wrapper = CT_EComResolverParamsData::NewL();
45 else if( KDataEComSession() == aData )
47 wrapper = CT_EComSessionData::NewL();
52 inline CT_ECOMServer::CT_ECOMServer()
56 inline CT_ECOMServer::~CT_ECOMServer()
60 inline CTestBlockController* CT_ECOMServer::CreateTestBlock()
62 return new CT_ECOMBlock();