filemanager/Engine/src/CFileManagerRestoreSettings.cpp
branchRCL_3
changeset 20 491b3ed49290
parent 19 95243422089a
child 21 65326cf895ed
equal deleted inserted replaced
19:95243422089a 20:491b3ed49290
     1 /*
       
     2 * Copyright (c) 2006 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:  Empty restore settings to maintain library BC.
       
    15 *                Remove this file when cleaning up RnD flags
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include "CFileManagerRestoreSettings.h"
       
    23 #include "CFilemanagerBackupSettings.h"
       
    24 
       
    25 
       
    26 // ======== MEMBER FUNCTIONS ========
       
    27 
       
    28 // ----------------------------------------------------------------------------
       
    29 // CFileManagerRestoreSettings::CFileManagerRestoreSettings
       
    30 // ----------------------------------------------------------------------------
       
    31 //
       
    32 CFileManagerRestoreSettings::CFileManagerRestoreSettings(
       
    33         CFileManagerEngine& aEngine ) :
       
    34     iEngine( aEngine )
       
    35     {
       
    36     }
       
    37 
       
    38 // ----------------------------------------------------------------------------
       
    39 // CFileManagerRestoreSettings::~CFileManagerRestoreSettings
       
    40 // ----------------------------------------------------------------------------
       
    41 //
       
    42 CFileManagerRestoreSettings::~CFileManagerRestoreSettings()
       
    43     {
       
    44     }
       
    45 
       
    46 // ----------------------------------------------------------------------------
       
    47 // CFileManagerRestoreSettings::NewL
       
    48 // ----------------------------------------------------------------------------
       
    49 //
       
    50 CFileManagerRestoreSettings* CFileManagerRestoreSettings::NewL(
       
    51         CFileManagerEngine& aEngine )
       
    52     {
       
    53     CFileManagerRestoreSettings* self =
       
    54         new ( ELeave ) CFileManagerRestoreSettings(
       
    55             aEngine );
       
    56     CleanupStack::PushL( self );
       
    57     self->ConstructL();
       
    58     CleanupStack::Pop( self );
       
    59     return self;
       
    60     }
       
    61 
       
    62 // ----------------------------------------------------------------------------
       
    63 // CFileManagerRestoreSettings::ConstructL
       
    64 // ----------------------------------------------------------------------------
       
    65 //
       
    66 void CFileManagerRestoreSettings::ConstructL()
       
    67     {
       
    68     }
       
    69 
       
    70 // ----------------------------------------------------------------------------
       
    71 // CFileManagerRestoreSettings::SetSelection
       
    72 // ----------------------------------------------------------------------------
       
    73 //
       
    74 EXPORT_C void CFileManagerRestoreSettings::SetSelection(
       
    75         const TUint64& /*aSelection*/ )
       
    76     {
       
    77     }
       
    78 
       
    79 // ----------------------------------------------------------------------------
       
    80 // CFileManagerRestoreSettings::RefreshL
       
    81 // ----------------------------------------------------------------------------
       
    82 //
       
    83 EXPORT_C void CFileManagerRestoreSettings::RefreshL()
       
    84     {
       
    85     }
       
    86 
       
    87 // ----------------------------------------------------------------------------
       
    88 // CFileManagerRestoreSettings::CEntry::MdcaCount
       
    89 // ----------------------------------------------------------------------------
       
    90 //
       
    91 TInt CFileManagerRestoreSettings::MdcaCount() const
       
    92     {
       
    93     return 0;
       
    94     }
       
    95 
       
    96 // ----------------------------------------------------------------------------
       
    97 // CFileManagerRestoreSettings::CEntry::MdcaPoint
       
    98 // ----------------------------------------------------------------------------
       
    99 //
       
   100 TPtrC CFileManagerRestoreSettings::MdcaPoint( TInt /*aIndex*/ ) const
       
   101     {
       
   102     return TPtrC( KNullDesC );
       
   103     }
       
   104 
       
   105 // ----------------------------------------------------------------------------
       
   106 // CFileManagerRestoreSettings::CEntry::~CEntry
       
   107 // ----------------------------------------------------------------------------
       
   108 //
       
   109 CFileManagerRestoreSettings::CEntry::~CEntry()
       
   110     {
       
   111     }
       
   112 
       
   113 // End of File