sipproviderplugins/sipprovider/sipstatemachine/inc/StateSessionTerminate.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2005-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 // CStateSessionTerminate definition file
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #ifndef STATE_SESSION_TERMINATE_H
       
    24 #define STATE_SESSION_TERMINATE_H
       
    25 
       
    26 
       
    27 #include <e32std.h>
       
    28 #include <e32base.h>
       
    29 
       
    30 #include "SipStateMachine.h"
       
    31 
       
    32 #ifdef __FLOG_ACTIVE
       
    33 	// This will do the logging if logging is enabled
       
    34     #include <comms-infras/ss_log.h>
       
    35 #endif
       
    36 
       
    37 class CStateSessionTerminate : public CSipStateBase
       
    38 	{
       
    39 public:
       
    40 	static CStateSessionTerminate * NewL(CSipStateMachine * aStateMachine);
       
    41 	~CStateSessionTerminate();
       
    42 	CSipStateBase * ProcessClientL(TRequestStatus & aStatus);
       
    43 	CSipStateBase * ProcessServerL(TRequestStatus & aStatus);
       
    44 	CSipStateBase * ProcessServerErrorL(TRequestStatus & aStatus);
       
    45 private:
       
    46 	// For Logging
       
    47 	__FLOG_DECLARATION_MEMBER;
       
    48 	CStateSessionTerminate(CSipStateMachine * aStateMachine);	
       
    49 	};
       
    50 	
       
    51 	
       
    52 #endif
       
    53