First public contribution.
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
25 #include <ecom/ecom.h>
26 #include <ecom/implementationproxy.h>
27 #include "f32agentfactory.h"
29 /** Implementation table is required by ECom. Allows alternative
30 * New methods to be specified.
32 const TImplementationProxy ImplementationTable[] =
34 IMPLEMENTATION_PROXY_ENTRY(0x101FC2CF, ContentAccess::CF32AgentFactory::NewL)
38 * Lookup function required by ECom.
40 * Returns the ImplementationTable to the ECom framework.
42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
44 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
45 return ImplementationTable;