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