contentmgmt/contentaccessfwfordrm/source/f32agent/f32agent.cpp
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    14 * Description: 
    14 * Description: 
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 
    18 
    19 
       
    20 
       
    21 /**
    19 /**
    22  @file
    20  @file
    23  @internalComponent
    21  @internalComponent
    24  @released
    22  @released
    25 */
    23 */
    26 
    24 
    27 #include <ecom.h>
    25 #include <ecom/ecom.h>
    28 #include <implementationproxy.h>
    26 #include <ecom/implementationproxy.h>
    29 #include "f32agentfactory.h"
    27 #include "f32agentfactory.h"
    30 
    28 
    31 /** Implementation table is required by ECom. Allows alternative
    29 /** Implementation table is required by ECom. Allows alternative
    32 *	New methods to be specified.
    30 *	New methods to be specified.
    33 */
    31 */
    44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    45 	{
    43 	{
    46 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    44 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    47 	return ImplementationTable;
    45 	return ImplementationTable;
    48 	}
    46 	}
       
    47