equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: Definition of the CHtiFtpBackupFake class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __HTIFTPBACKUPFAKE_H |
|
20 #define __HTIFTPBACKUPFAKE_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <f32file.h> |
|
25 #include <connect/sbeclient.h> |
|
26 #include <HtiFtpBackupFakeBase.h> |
|
27 |
|
28 using namespace conn; |
|
29 |
|
30 // CONSTANTS |
|
31 |
|
32 // MACROS |
|
33 |
|
34 // DATA TYPES |
|
35 |
|
36 // FUNCTION PROTOTYPES |
|
37 |
|
38 // FORWARD DECLARATIONS |
|
39 |
|
40 // CLASS DECLARATION |
|
41 |
|
42 /** |
|
43 * Definition of the class implementing the CHtiFtpBackupFakeBase |
|
44 */ |
|
45 NONSHARABLE_CLASS( CHtiFtpBackupFake ) : public CHtiFtpBackupFakeBase |
|
46 { |
|
47 public: |
|
48 // constructor support |
|
49 virtual void ConstructL( RFs* aFs ); |
|
50 |
|
51 // destructor |
|
52 virtual ~CHtiFtpBackupFake(); |
|
53 |
|
54 public: // from CHtiFtpBackupFakeBase |
|
55 virtual TInt ActivateBackup(); |
|
56 virtual TInt DeactivateBackup(); |
|
57 |
|
58 private: |
|
59 CSBEClient* iSBEClient; // owned |
|
60 }; |
|
61 |
|
62 #endif // __HTIFTPBACKUPFAKE_H |
|
63 |
|
64 // End of File |