hti/hti_plat/hti_api/inc/HtiFtpBackupFakeBase.h
branchRCL_3
changeset 59 8ad140f3dd41
parent 0 a03f92240627
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     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 CHtiFtpBackupFakeBase class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __HTIFTPBACKUPFAKEBASE_H
       
    20 #define __HTIFTPBACKUPFAKEBASE_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32std.h>
       
    24 #include <f32file.h>
       
    25 
       
    26 // CONSTANTS
       
    27 const TUid KHtiFtpBackupFakeInterfaceUid = { 0x20022D5F };
       
    28 
       
    29 // MACROS
       
    30 
       
    31 // DATA TYPES
       
    32 
       
    33 // FUNCTION PROTOTYPES
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 
       
    37 // CLASS DECLARATION
       
    38 
       
    39 /**
       
    40 * Definition of the CHtiFtpBackupFakeBase
       
    41 */
       
    42 class CHtiFtpBackupFakeBase : public CBase
       
    43     {
       
    44     public:
       
    45         virtual void ConstructL( RFs* aFs ) = 0;
       
    46         virtual TInt ActivateBackup() = 0;
       
    47         virtual TInt DeactivateBackup() = 0;
       
    48     protected:
       
    49         RFs*        iFs;        // referenced
       
    50     };
       
    51 
       
    52 
       
    53 #endif // __HTIFTPBACKUPFAKEBASE_H
       
    54 
       
    55 // End of File