equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Callback interface to store file processing |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef M_CMSMFILERULEPROCESSINGOBSERVER_H |
|
21 #define M_CMSMFILERULEPROCESSINGOBSERVER_H |
|
22 |
|
23 #include "cmsmcommon.h" |
|
24 |
|
25 /** |
|
26 * Callback interface class used to notify CmSmMain -class |
|
27 * about store file processing status |
|
28 * |
|
29 * @lib cmstoremanager.lib |
|
30 * |
|
31 * @since S60 v5.1 |
|
32 */ |
|
33 class MCmSmFileProcessingObserver |
|
34 { |
|
35 |
|
36 public: |
|
37 |
|
38 /** |
|
39 * Used to notify about status changes in fill rule processing |
|
40 * |
|
41 * @since S60 5.1 |
|
42 * @param aStatus, status of the file processing |
|
43 * @return None |
|
44 */ |
|
45 virtual void FileProcessingStatus( |
|
46 TCmSmFileProcessingStatus aStatus ) = 0; |
|
47 }; |
|
48 |
|
49 #endif // M_CMSMFILERULEPROCESSINGOBSERVER_H |