wmdrm/wmdrmengine/wmdrmagent/src/wmdrmagent.cpp
changeset 0 95b198f216e5
equal deleted inserted replaced
-1:000000000000 0:95b198f216e5
       
     1 /*
       
     2 * Copyright (c) 2006-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 "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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <ecom/ecom.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include "wmdrmagentfactory.h"
       
    23 
       
    24 const TImplementationProxy ImplementationTable[] =
       
    25 	{
       
    26 #ifdef __EABI__
       
    27 		IMPLEMENTATION_PROXY_ENTRY(0x10205CB6,
       
    28             ContentAccess::CWmDrmAgentFactory::NewL)
       
    29 #else
       
    30 		{ {0x10205CB6}, ContentAccess::CWmDrmAgentFactory::NewL}
       
    31 #endif
       
    32 	}; 
       
    33 
       
    34 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    35 
       
    36 // -----------------------------------------------------------------------------
       
    37 // ImplementationGroupProxy: Lookup method required by ECom
       
    38 // Returns the ImplementationTable to the  ECom framework
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    42 	{
       
    43 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    44 	return ImplementationTable;
       
    45 	}
       
    46 
       
    47 
       
    48 //  End of File