messagingappbase/obexmtms/TObexMTM/INC/ObexIgnoreSendErrorsState.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     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 // $Workfile: ObexIgnoreSendErrorsState.h $
       
    15 // $Author: Simonk $
       
    16 // $Revision: 1 $
       
    17 // $Date: 29/01/02 17:42 $
       
    18 // 
       
    19 //
       
    20 
       
    21 
       
    22 #ifndef __OBEXIGNORESENDERRORSSTATE_H__
       
    23 #define __OBEXIGNORESENDERRORSSTATE_H__
       
    24 
       
    25 #include "harness.h"        //MBaseTestState
       
    26 
       
    27 //forward declarations
       
    28 class CObexClientTest;
       
    29 
       
    30 
       
    31 class CObexIgnoreSendErrorsState : public CBase, public MBaseTestState
       
    32 /*
       
    33  * A state of class to be added to a test harness so that errors
       
    34  * in the send operation don't result in the test harness finishing
       
    35  */
       
    36 	{
       
    37 public:
       
    38 	CObexIgnoreSendErrorsState(CObexClientTest& aClientTest);
       
    39 	void StartL(TRequestStatus& aStatus);
       
    40 
       
    41 private:
       
    42 	CObexClientTest& iClientTest;
       
    43 	};
       
    44 
       
    45 #endif  //__OBEXIGNORESENDERRORSSTATE_H__