equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: ObexSearcherObserver |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MObexSearcherObserver_H |
|
20 #define MObexSearcherObserver_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class TBTDeviceResponseParams; |
|
27 class TIrdaSockAddr; |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 class MObexSearcherObserver |
|
32 { |
|
33 public: // New functions |
|
34 |
|
35 /** |
|
36 * Notify device found |
|
37 */ |
|
38 virtual void HandleDeviceFoundL() = 0; |
|
39 |
|
40 /** |
|
41 * Notify device search error |
|
42 */ |
|
43 virtual void HandleDeviceErrorL( TInt aErr ) = 0; |
|
44 |
|
45 /** |
|
46 * Notify service found |
|
47 */ |
|
48 virtual void HandleServiceFoundL() = 0; |
|
49 |
|
50 /** |
|
51 * Notify service search error |
|
52 */ |
|
53 virtual void HandleServiceErrorL( TInt aErr ) = 0; |
|
54 |
|
55 ~MObexSearcherObserver() {}; |
|
56 |
|
57 protected: |
|
58 |
|
59 MObexSearcherObserver() {}; |
|
60 |
|
61 }; |
|
62 |
|
63 #endif // MObexSearcherObserver_H |
|
64 |
|
65 // End of File |