epoc32/include/http/mhttpfiltercreationcallback.h
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- a/epoc32/include/http/mhttpfiltercreationcallback.h	Tue Mar 16 16:12:26 2010 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,57 +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 MHTTPFilterCreationCallback.h
    1.23 - @warning : This file contains Rose Model ID comments - please do not delete
    1.24 -*/
    1.25 -
    1.26 -#ifndef __MHTTPFILTERCREATIONCALLBACK_H__
    1.27 -#define __MHTTPFILTERCREATIONCALLBACK_H__
    1.28 -
    1.29 -// Forward declarations
    1.30 -class TFilterConfigurationIterator;
    1.31 -
    1.32 -
    1.33 -//##ModelId=3C4C0F450132
    1.34 -class MHTTPFilterCreationCallback
    1.35 -/**
    1.36 -This class serves as a pure virtual interface required as a session callback to the client
    1.37 -when the client requires to configure the filters that are installed. The session calls the
    1.38 -method in the interface when the construction of the session is complete. The callback passes
    1.39 -an object of CFilterConfigurationIterator that allows the client to configure the filters that
    1.40 -are installed.
    1.41 -@publishedAll
    1.42 -@released
    1.43 -*/
    1.44 -	{
    1.45 -public: // Methods
    1.46 -	/**
    1.47 -	@fn				ConfigureSessionFiltersL(TFilterConfigurationIterator* aFilterConfigIter) = 0
    1.48 -	Intended Usage:	Pure virtual that is called by the session when the session construction
    1.49 -					is complete. This passes a CFilterConfigurationIterator back to the client
    1.50 -					which allows the client to install or install selected filters.
    1.51 -	@param			aFilterConfigIter Pointer to the filter configuration iterator. Ownership of
    1.52 -					CFilterConfigurationIterator remains with the session and is not transfered
    1.53 -	@pre 			The session has been constructed
    1.54 -	@post			The filters that are installed are have been configured by the client
    1.55 -	*/
    1.56 -	//##ModelId=3C4C0F450150
    1.57 -	virtual void ConfigureSessionFiltersL(TFilterConfigurationIterator* aFilterConfigIter) = 0;
    1.58 -	};
    1.59 -
    1.60 -#endif // __MHTTPFILTERCREATIONCALLBACK_H__