os/security/contentmgmt/contentaccessfwfordrm/source/f32agent/f32agent.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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  @file
    21  @internalComponent
    22  @released
    23 */
    24 
    25 #include <ecom/ecom.h>
    26 #include <ecom/implementationproxy.h>
    27 #include "f32agentfactory.h"
    28 
    29 /** Implementation table is required by ECom. Allows alternative
    30 *	New methods to be specified.
    31 */
    32 const TImplementationProxy ImplementationTable[] =
    33 	{
    34 		IMPLEMENTATION_PROXY_ENTRY(0x101FC2CF, ContentAccess::CF32AgentFactory::NewL)
    35 	}; 
    36 
    37 /** 
    38 * Lookup function required by ECom. 
    39 *
    40 * Returns the ImplementationTable to the ECom framework.
    41 */
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    43 	{
    44 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    45 	return ImplementationTable;
    46 	}
    47