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: CreateServiceEntryState.h $ |
|
15 // $Author: Simonk $ |
|
16 // $Revision: 1 $ |
|
17 // $Date: 23/01/02 14:53 $ |
|
18 // |
|
19 // |
|
20 |
|
21 |
|
22 #ifndef __CREATESERVICEENTRYSTATE_H__ |
|
23 #define __CREATESERVICEENTRYSTATE_H__ |
|
24 |
|
25 #include "harness.h" //MBaseTestState |
|
26 |
|
27 class CObexClientTest; |
|
28 |
|
29 |
|
30 class CCreateServiceEntryState : public CBase, public MBaseTestState |
|
31 /* |
|
32 * A state of class to be added to a test harness that encapsulates the |
|
33 * creation of a service entry |
|
34 */ |
|
35 { |
|
36 public: |
|
37 CCreateServiceEntryState(CObexClientTest& aClientTest); |
|
38 void StartL(TRequestStatus& aStatus); |
|
39 |
|
40 private: |
|
41 CObexClientTest& iClientTest; |
|
42 }; |
|
43 |
|
44 |
|
45 |
|
46 #endif // __CREATESERVICEENTRYSTATE_H__ |