equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: Declaration for CMMCScBkupStateNotifyAllSnapshotsSupplied |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef __CMMCSCBKUPSTATENOTIFYALLSNAPSHOTSSUPPLIED_H__ |
|
20 #define __CMMCSCBKUPSTATENOTIFYALLSNAPSHOTSSUPPLIED_H__ |
|
21 |
|
22 // User includes |
|
23 #include "MMCScBkupOperations.h" |
|
24 #include "CMMCScBkupState.h" |
|
25 |
|
26 /** |
|
27 * |
|
28 * |
|
29 * @since 3.0 |
|
30 */ |
|
31 NONSHARABLE_CLASS(CMMCScBkupStateNotifyAllSnapshotsSupplied) : public CMMCScBkupState |
|
32 { |
|
33 public: |
|
34 |
|
35 /** |
|
36 * Static constructor |
|
37 */ |
|
38 static CMMCScBkupStateNotifyAllSnapshotsSupplied* NewL( MMMCScBkupDriver& aDriver ); |
|
39 |
|
40 private: |
|
41 |
|
42 /** |
|
43 * C++ default constructor |
|
44 */ |
|
45 CMMCScBkupStateNotifyAllSnapshotsSupplied( MMMCScBkupDriver& aDriver ); |
|
46 |
|
47 public: // From CMMCScBkupState |
|
48 TMMCScBkupStateId StateId() const; |
|
49 TMMCScBkupStateId NextStateId() const; |
|
50 |
|
51 private: // From CMMCScBkupState |
|
52 void PerformStateInitL(); |
|
53 }; |
|
54 |
|
55 |
|
56 |
|
57 |
|
58 #endif // __CMMCSCBKUPSTATENOTIFYALLSNAPSHOTSSUPPLIED_H__ |
|
59 |
|
60 //End of File |