applayerprotocols/httptransportfw/Test/T_HttpIntegration/MHTTPEventCallback.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2002-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 // $Header$
       
    15 // MEventCallback.h
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifndef __MEVENTCALLBACK_H__
       
    20 #define __MEVENTCALLBACK_H__
       
    21 
       
    22 //-----------------------------------------------------------------------------
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 //-----------------------------------------------------------------------------
       
    27 
       
    28 #include <http.h>
       
    29 
       
    30 //-----------------------------------------------------------------------------
       
    31 
       
    32 class CFrmwrkSession;
       
    33 
       
    34 class MHTTPEventCallback
       
    35 {
       
    36 public:	// Methods
       
    37 
       
    38 	virtual void HandleHTTPEvent(THTTPEvent aEvent, CFrmwrkSession *aSess, TRequestStatus aStatus) = 0;
       
    39 };
       
    40 
       
    41 //-----------------------------------------------------------------------------
       
    42 
       
    43 #endif	// __MEVENTCALLBACK_H__
       
    44 
       
    45 //-----------------------------------------------------------------------------
       
    46