equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-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: Observer interface for delayed actions |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_MIRDELAYEDACTIONOBSERVER_H |
|
20 #define M_MIRDELAYEDACTIONOBSERVER_H |
|
21 |
|
22 /** |
|
23 * Observer interface for delayed actions. |
|
24 * |
|
25 * Delayed actions are used to process user actions that were done prior to |
|
26 * network connection being up as soon as the connection is established. |
|
27 */ |
|
28 class MIRDelayedActionObserver |
|
29 { |
|
30 |
|
31 public: |
|
32 |
|
33 /** |
|
34 * Called when the network connection is up and ready to be used. |
|
35 */ |
|
36 virtual void ExecuteDelayedActionL() = 0; |
|
37 |
|
38 }; |
|
39 |
|
40 #endif // M_MIRDELAYEDACTIONOBSERVER_H |