contentmgmt/contentaccessfwfordrm/source/f32agent/f32agent.cpp
changeset 0 2c201484c85f
child 8 35751d3474b7
equal deleted inserted replaced
-1:000000000000 0:2c201484c85f
       
     1 /*
       
     2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 /**
       
    22  @file
       
    23  @internalComponent
       
    24  @released
       
    25 */
       
    26 
       
    27 #include <ecom.h>
       
    28 #include <implementationproxy.h>
       
    29 #include "f32agentfactory.h"
       
    30 
       
    31 /** Implementation table is required by ECom. Allows alternative
       
    32 *	New methods to be specified.
       
    33 */
       
    34 const TImplementationProxy ImplementationTable[] =
       
    35 	{
       
    36 		IMPLEMENTATION_PROXY_ENTRY(0x101FC2CF, ContentAccess::CF32AgentFactory::NewL)
       
    37 	}; 
       
    38 
       
    39 /** 
       
    40 * Lookup function required by ECom. 
       
    41 *
       
    42 * Returns the ImplementationTable to the ECom framework.
       
    43 */
       
    44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    45 	{
       
    46 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    47 	return ImplementationTable;
       
    48 	}