equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Global dialog result observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_FILEMANAGERGLOBALDLGOBSERVER_H |
|
20 #define M_FILEMANAGERGLOBALDLGOBSERVER_H |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32base.h> |
|
25 |
|
26 |
|
27 // CLASS DECLARATION |
|
28 /** |
|
29 * This class observes global dialog notifications |
|
30 * |
|
31 * @since S60 3.1 |
|
32 */ |
|
33 class MFileManagerGlobalDlgObserver |
|
34 { |
|
35 |
|
36 public: |
|
37 /** |
|
38 * Handles global dialog result value |
|
39 * |
|
40 * @since S60 3.1 |
|
41 * @param aDialogType Global dialog type |
|
42 * @param aDialogResult Global dialog result value |
|
43 */ |
|
44 virtual void HandleGlobalDlgResult( |
|
45 TInt aDialogType, |
|
46 TInt aDialogResult ) = 0; |
|
47 |
|
48 }; |
|
49 |
|
50 #endif // M_FILEMANAGERGLOBALDLGOBSERVER_H |
|
51 |
|
52 // End of File |