equal
deleted
inserted
replaced
|
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.cpp $ |
|
15 // $Author: Simonk $ |
|
16 // $Revision: 1 $ |
|
17 // $Date: 29/01/02 17:44 $ |
|
18 // |
|
19 // |
|
20 |
|
21 |
|
22 #include "obexignoresenderrorsstate.h" |
|
23 |
|
24 //TODO:- check that all these headers are required |
|
25 |
|
26 // System includes |
|
27 #include <btmsgtypeuid.h> // KUidMsgTypeBt |
|
28 #include <btmtmcmds.h> // TBtMtmAsyncCmds |
|
29 #include <irmsgtypeuid.h> // KUidMsgTypeIr |
|
30 #include <irmtmcmds.h> // TIrMtmAsyncCmds |
|
31 #include <msvuids.h> // KUidMsvMessageEntry |
|
32 |
|
33 // User includes |
|
34 #include "obexharness.h" // CObexClientTest |
|
35 |
|
36 |
|
37 CObexIgnoreSendErrorsState::CObexIgnoreSendErrorsState(CObexClientTest& aClientTest) : |
|
38 iClientTest(aClientTest) |
|
39 { |
|
40 } |
|
41 |
|
42 void CObexIgnoreSendErrorsState::StartL(TRequestStatus& aStatus) |
|
43 { |
|
44 iClientTest.SetIgnoreSendErrors(ETrue); |
|
45 TRequestStatus* status = &aStatus; |
|
46 User::RequestComplete(status, KErrNone); |
|
47 } |