datacommsserver/esockserver/commsdataobjects/src/connectionqueryfactory.cpp
author Daniel A. Rubio <danielr@symbian.org>
Tue, 15 Jun 2010 11:42:56 +0100
branchGCC_SURGE
changeset 53 a27f52f37af3
parent 0 dfb7c4ff071f
permissions -rw-r--r--
Bug 2964 - GCC-E compilation error in bt caused by commsfw (813) (template arguments)

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// ECOM Factory for Commdb Query Sets
// 
//

/**
 @file
 @internalComponent
*/


#include "connectionqueryfactory.h"
#include <comms-infras/connectionqueryset.h>


using namespace ESock;

// ---------------- Factory Methods ----------------
/**
Creates an instance of a connection query based on the supplied type 
@param		aConstructionParams A TUint identifying the type of connection query to create
@return		A pointer to the instance of a connection query
@exception	Leaves with KErrNoMemory if the object cannot be created, or KErrUnknown
			if unknown query type id is given
*/
XConnectionQueryBase* CConnectionQueryFactory::NewL(TAny* aConstructionParams)
    {
    TUint typeId = reinterpret_cast<TUint>(aConstructionParams);
    switch (typeId)
    	{
    	case XConnectionQueryBase::ENull:
        	return new (ELeave) XConnectionQuerySet::XNullQuery();
        	//break;

    	case XConnectionQueryBase::EBool:
        	return new (ELeave) XBoolQuery();
        	//break;

    	case XConnectionQueryBase::EInt:
        	return new (ELeave) XIntQuery();
        	//break;

    	case XConnectionQueryBase::EUint:
        	return new (ELeave) XUintQuery();
        	//break;

    	case XConnectionQueryBase::EText8:
        	return new (ELeave) XText8Query();
        	//break;

    	case XConnectionQueryBase::EText16:
        	return new (ELeave) XText16Query();
        	//break;
        }

	User::Leave(KErrUnknown);
    return NULL;
    }