1.1 --- a/epoc32/include/http/mhttpfilterbase.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,88 +0,0 @@
1.4 -// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -
1.20 -
1.21 -/**
1.22 - @file MHTTPFilterBase.h
1.23 - @warning : This file contains Rose Model ID comments - please do not delete
1.24 -*/
1.25 -
1.26 -#ifndef __MHTTPFILTERBASE_H__
1.27 -#define __MHTTPFILTERBASE_H__
1.28 -
1.29 -// System includes
1.30 -#include <e32std.h>
1.31 -
1.32 -// Forward declarations
1.33 -class RHTTPTransaction;
1.34 -class THTTPEvent;
1.35 -class THTTPSessionEvent;
1.36 -
1.37 -
1.38 -//##ModelId=3A914DF9034F
1.39 -class MHTTPFilterBase
1.40 -/**
1.41 -A HTTP Filter. This is the base class for normal filters
1.42 -(MHTTPFilter) which adds an unload function, and
1.43 -MHTTPTransactionCallback, which doesn't add an unload function.
1.44 -@publishedAll
1.45 -@released
1.46 -*/
1.47 - {
1.48 -public:
1.49 - /** Called when the filter's registration conditions are satisfied for events that
1.50 - occur on a transaction. Any Leaves must be handled by the appropriate MHFRunError.
1.51 - Note that this function is not allowed to leave if called with
1.52 - certain events. @see THTTPEvent
1.53 - @param aTransaction The transaction that the event has occurred on.
1.54 - @param aEvent The event that has occurred.
1.55 - */
1.56 - //##ModelId=3A914DF9035D
1.57 - IMPORT_C virtual void MHFRunL(RHTTPTransaction aTransaction, const THTTPEvent& aEvent);
1.58 -
1.59 - /** Called when the filters registration conditions are satisfied for events that occur
1.60 - on the session. Any leaves must be handled by the appropriate MHFRunError.
1.61 - @param aEvent The session event that has occured.
1.62 - */
1.63 - //##ModelId=3C4C37D401C1
1.64 - IMPORT_C virtual void MHFSessionRunL(const THTTPSessionEvent& aEvent);
1.65 -
1.66 - /** Called when RunL leaves from a transaction event. This works in the same
1.67 - way as CActve::RunError; return KErrNone if you have handled the error.
1.68 - If you don't completely handle the error, a panic will occur.
1.69 - @param aError The leave code that RunL left with.
1.70 - @param aTransaction The transaction that was being processed.
1.71 - @param aEvent The Event that was being processed.
1.72 - @return KErrNone if the error has been cancelled or the code
1.73 - of the continuing error otherwise.
1.74 - */
1.75 - //##ModelId=3A914DF90359
1.76 - IMPORT_C virtual TInt MHFRunError(TInt aError, RHTTPTransaction aTransaction, const THTTPEvent& aEvent);
1.77 -
1.78 - /** Called when MHFRunL leaves from a session event. This works in the same
1.79 - way as CActve::RunError
1.80 - If you don't completely handle the error, a panic will occur.
1.81 - @param aError The leave code that RunL left with.
1.82 - @param aEvent The Event that was being processed.
1.83 - @return KErrNone if the error has been cancelled or the code
1.84 - of the continuing error otherwise.
1.85 - */
1.86 - //##ModelId=3C4C37D302C4
1.87 - IMPORT_C virtual TInt MHFSessionRunError(TInt aError, const THTTPSessionEvent& aEvent);
1.88 - };
1.89 -
1.90 -
1.91 -#endif // __MHTTPFILTERBASE_H__