diff -r 9d7ce34704c8 -r b564fb5fd78b baseconnectionproviders/refscpr/src/ReferenceSCPR_subconparams.cpp --- a/baseconnectionproviders/refscpr/src/ReferenceSCPR_subconparams.cpp Tue Aug 31 16:25:36 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -// Copyright (c) 2005-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: -// The implementation file for the Reference SubConnection Parameter Set. -// -// - -/** - @file - @internalComponent -*/ - - -#include -#include "ReferenceSCPR_subconparams.h" -#include - - -START_ATTRIBUTE_TABLE( CSubConReferenceParamSet, KSubConReferenceParamsUid, KSubConReferenceParamsType ) - REGISTER_ATTRIBUTE( CSubConReferenceParamSet, iDummyTIntParameter, TMetaNumber ) - REGISTER_ATTRIBUTE( CSubConReferenceParamSet, iDummyName, TMetaNumber ) -END_ATTRIBUTE_TABLE() - - -CSubConExtensionParameterSet* CReferenceSubConnExtensionParamsFactory::NewL(TAny* aConstructionParameters) - { - TInt32 type = reinterpret_cast(aConstructionParameters); - switch (type) - { - case (KSubConReferenceParamsType): - return new (ELeave) CSubConReferenceParamSet; - default: - User::Leave(KErrNotFound); - } - return NULL; - } -