williamr@2: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@2: // 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 williamr@2: // which accompanies this distribution, and is available williamr@2: // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // williamr@2: williamr@2: williamr@2: williamr@2: /** williamr@2: @file MHTTPFilterCreationCallback.h williamr@2: @warning : This file contains Rose Model ID comments - please do not delete williamr@2: */ williamr@2: williamr@2: #ifndef __MHTTPFILTERCREATIONCALLBACK_H__ williamr@2: #define __MHTTPFILTERCREATIONCALLBACK_H__ williamr@2: williamr@2: // Forward declarations williamr@2: class TFilterConfigurationIterator; williamr@2: williamr@2: williamr@2: //##ModelId=3C4C0F450132 williamr@2: class MHTTPFilterCreationCallback williamr@2: /** williamr@2: This class serves as a pure virtual interface required as a session callback to the client williamr@2: when the client requires to configure the filters that are installed. The session calls the williamr@2: method in the interface when the construction of the session is complete. The callback passes williamr@2: an object of CFilterConfigurationIterator that allows the client to configure the filters that williamr@2: are installed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: { williamr@2: public: // Methods williamr@2: /** williamr@2: @fn ConfigureSessionFiltersL(TFilterConfigurationIterator* aFilterConfigIter) = 0 williamr@2: Intended Usage: Pure virtual that is called by the session when the session construction williamr@2: is complete. This passes a CFilterConfigurationIterator back to the client williamr@2: which allows the client to install or install selected filters. williamr@2: @param aFilterConfigIter Pointer to the filter configuration iterator. Ownership of williamr@2: CFilterConfigurationIterator remains with the session and is not transfered williamr@2: @pre The session has been constructed williamr@2: @post The filters that are installed are have been configured by the client williamr@2: */ williamr@2: //##ModelId=3C4C0F450150 williamr@2: virtual void ConfigureSessionFiltersL(TFilterConfigurationIterator* aFilterConfigIter) = 0; williamr@2: }; williamr@2: williamr@2: #endif // __MHTTPFILTERCREATIONCALLBACK_H__