equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2007 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: |
|
15 * This class is a pure virtual mixin class for MMS bearer observers |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MMMSTRANSPORTOBSERVER_H |
|
22 #define MMMSTRANSPORTOBSERVER_H |
|
23 |
|
24 // CONSTANTS |
|
25 |
|
26 // MACROS |
|
27 |
|
28 // DATA TYPES |
|
29 |
|
30 // FUNCTION PROTOTYPES |
|
31 |
|
32 // FORWARD DECLARATIONS |
|
33 |
|
34 // CLASS DECLARATION |
|
35 /** |
|
36 * This class is a pure virtual mixin class for wap operations |
|
37 */ |
|
38 class MMmsTransportObserver |
|
39 { |
|
40 public: // New functions |
|
41 /** |
|
42 * Callback for timer cancellation |
|
43 */ |
|
44 virtual void TimerExpired() = 0; |
|
45 |
|
46 /** |
|
47 * Callback for gprs suspend notification |
|
48 */ |
|
49 virtual void GprsSuspended() = 0; |
|
50 |
|
51 /** |
|
52 * Callback for gprs resume notification |
|
53 */ |
|
54 virtual void GprsResumed() = 0; |
|
55 |
|
56 /** |
|
57 * Callback for transfer cancel notification |
|
58 */ |
|
59 virtual void TransferCancelled() = 0; |
|
60 |
|
61 }; |
|
62 |
|
63 #endif // MMMSTRANSPORTOBSERVER_H |
|
64 |
|
65 // End of File |