applayerprotocols/httpexamples/T_TestFilters/corefiltersmain.cpp
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2001-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 //
       
    15 
       
    16 
       
    17 #include <e32std.h>
       
    18 #include <ecom/implementationproxy.h>
       
    19 #include "redirect.h"
       
    20 #include "ValidationFilter.h"
       
    21 
       
    22 #ifndef EKA2
       
    23 GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
       
    24 	{
       
    25 	return(KErrNone);
       
    26 	}
       
    27 #endif // EKA2
       
    28 
       
    29 const TImplementationProxy KImplementationTable[] = 
       
    30 	{
       
    31 		IMPLEMENTATION_PROXY_ENTRY(0x101F446F, CRedirectFilter::InstallFilterL),
       
    32 		IMPLEMENTATION_PROXY_ENTRY(0x101F447B, CValidationFilter::InstallFilterL)
       
    33 	};
       
    34 
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    36 	{
       
    37 	aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
       
    38 	return KImplementationTable;
       
    39 	}