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: ObexFileDebugReceiveState.h $ |
|
15 // $Author: Simonk $ |
|
16 // $Revision: 2 $ |
|
17 // $Date: 24/01/02 16:37 $ |
|
18 // |
|
19 // |
|
20 |
|
21 #ifndef __OBEXFILEDEBUGRECEIVESTATE_H__ |
|
22 #define __OBEXFILEDEBUGRECEIVESTATE_H__ |
|
23 |
|
24 #include "harness.h" //MBaseTestState |
|
25 |
|
26 // forward declarations |
|
27 class CObexClientTest; |
|
28 |
|
29 |
|
30 // |
|
31 // CObexFileDebugReceiveState |
|
32 // |
|
33 class CObexFileDebugReceiveState : public CBase, public MBaseTestState |
|
34 /* |
|
35 * A state class for use in the receipt of obex objects. Present functionality actually |
|
36 * just consists of copying a file from the source path to the destination directory |
|
37 */ |
|
38 { |
|
39 public: |
|
40 CObexFileDebugReceiveState(const TDesC& aSource, const TDesC& aDestination, CObexClientTest& aClientTest); |
|
41 void StartL(TRequestStatus& aStatus); |
|
42 |
|
43 private: |
|
44 CObexClientTest& iClientTest; |
|
45 TFileName iSource; |
|
46 TFileName iDestination; |
|
47 }; |
|
48 |
|
49 #endif //__OBEXFILEDEBUGRECEIVESTATE_H__ |