realtimenetprots/sipfw/ProfileAgent/IMS_Agent/Src/implementationproxy.cpp
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Name        : implementationproxy.cpp
       
    15 // Part of     : sip ims agent
       
    16 // implementation
       
    17 // Version     : 1.0
       
    18 //
       
    19 
       
    20 
       
    21 
       
    22 #include "sipimsprofileagent.h"
       
    23 #include <ecom/implementationproxy.h>
       
    24 
       
    25 // Disabled PC-Lint warning for "suspicious typecast" caused by Symbian's
       
    26 // ECom declarations
       
    27 /*lint -e611 */
       
    28 
       
    29 const TImplementationProxy ImplementationTable[] =
       
    30     {
       
    31 	//Implementation UID and pointer to instantiation method
       
    32 	IMPLEMENTATION_PROXY_ENTRY( 0x10203358, CSIPIMSProfileAgent::NewL )
       
    33     };
       
    34 
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    36     {
       
    37     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    38 
       
    39     return ImplementationTable;
       
    40     }