diff -r 6369bfd1b60d -r 08b5eae9f9ff upnpframework/upnpaiwprovider/src/upnpaiwprovider.cpp --- a/upnpframework/upnpaiwprovider/src/upnpaiwprovider.cpp Mon Nov 01 13:44:24 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -/* -* Copyright (c) 2005-2007 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: Implementation of the UpnpAiwProvider. -* -*/ - - -#include -#include "upnpaiwprovideruids.hrh" -#include "upnpaiwenableexternalservice.h" -#include "upnpaiwcopytoexternalservice.h" -#include "upnpaiwmovetoexternalservice.h" -#include "upnpaiwplayonexternalbaseservice.h" -#include "upnpaiwplayonexternalmenuservice.h" -#include "upnpaiwopenexternalservice.h" - -// Map the interface UIDs to implementation factory functions -const TImplementationProxy ImplementationTable[] = - { - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwEnableExternalMenuServiceUid, - CUPnPAiwEnableExternalService::NewL), - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwCopyToExternalMenuServiceUid, - CUPnPAiwCopyToExternalService::NewL), - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwMoveToExternalMenuServiceUid, - CUPnPAiwMoveToExternalService::NewL), - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwPlayOnExternalMenuServiceUid, - CUPnPAiwPlayOnExternalMenuService::NewL), - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwPlayOnExternalBaseServiceUid, - CUPnPAiwPlayOnExternalBaseService::NewL), - IMPLEMENTATION_PROXY_ENTRY(KUPnPAiwOpenExternalBaseServiceUid, - CUPnPAiwOpenExternalService::NewL) - }; - -// -------------------------------------------------------------------------- -// Exported proxy for instantiation method resolution -// -------------------------------------------------------------------------- -// -EXPORT_C const TImplementationProxy* ImplementationGroupProxy( - TInt& aTableCount ) - { - aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); - return ImplementationTable; - } - -// End of file