equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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: AddHeadersState.h $ |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __ADDHEADERSSTATE_H__ |
|
19 #define __ADDHEADERSSTATE_H__ |
|
20 |
|
21 #include <obexheaders.h> |
|
22 |
|
23 #include "harness.h" //MBaseTestState |
|
24 |
|
25 |
|
26 // forward declarations |
|
27 class CObexClientTest; |
|
28 |
|
29 |
|
30 // |
|
31 // CAddHeadersState |
|
32 // |
|
33 class CAddHeadersState : public CBase, public MBaseTestState |
|
34 { |
|
35 public: |
|
36 CAddHeadersState(const CObexHeader::THeaderType aHeaderType, const TUint8 aHeaderHI, const TDesC& aHeaderHV, CObexClientTest& aClientTest); |
|
37 void StartL(TRequestStatus& aStatus); |
|
38 |
|
39 private: |
|
40 ~CAddHeadersState(); |
|
41 |
|
42 private: |
|
43 CObexClientTest& iClientTest; |
|
44 CObexHeader::THeaderType iHeaderType; |
|
45 TUint8 iHeaderHI; |
|
46 HBufC* iHeaderHV; |
|
47 }; |
|
48 |
|
49 #endif |