filemanager/Engine/src/CFileManagerBackupSettings.cpp
branchRCL_3
changeset 39 65326cf895ed
parent 0 6a9f87576119
equal deleted inserted replaced
38:491b3ed49290 39:65326cf895ed
       
     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 backup settings to maintain library BC.
       
    15 *                Remove this file when cleaning up RnD flags
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include "cfilemanagerbackupsettings.h"
       
    23 
       
    24 
       
    25 // ======== MEMBER FUNCTIONS ========
       
    26 
       
    27 // ----------------------------------------------------------------------------
       
    28 // CFileManagerBackupSettings::CFileManagerBackupSettings
       
    29 // ----------------------------------------------------------------------------
       
    30 //
       
    31 CFileManagerBackupSettings::CFileManagerBackupSettings(
       
    32         CFileManagerEngine& aEngine ) :
       
    33     iEngine( aEngine )
       
    34     {
       
    35     }
       
    36 
       
    37 // ----------------------------------------------------------------------------
       
    38 // CFileManagerBackupSettings::~CFileManagerBackupSettings
       
    39 // ----------------------------------------------------------------------------
       
    40 //
       
    41 CFileManagerBackupSettings::~CFileManagerBackupSettings()
       
    42     {
       
    43     }
       
    44 
       
    45 // ----------------------------------------------------------------------------
       
    46 // CFileManagerBackupSettings::NewL
       
    47 // ----------------------------------------------------------------------------
       
    48 //
       
    49 CFileManagerBackupSettings* CFileManagerBackupSettings::NewL(
       
    50         CFileManagerEngine& aEngine )
       
    51     {
       
    52     CFileManagerBackupSettings* self =
       
    53         new ( ELeave ) CFileManagerBackupSettings(
       
    54             aEngine );
       
    55     CleanupStack::PushL( self );
       
    56     self->ConstructL();
       
    57     CleanupStack::Pop( self );
       
    58     return self;
       
    59     }
       
    60 
       
    61 // ----------------------------------------------------------------------------
       
    62 // CFileManagerBackupSettings::ConstructL
       
    63 // ----------------------------------------------------------------------------
       
    64 //
       
    65 void CFileManagerBackupSettings::ConstructL()
       
    66     {
       
    67     }
       
    68 
       
    69 // ----------------------------------------------------------------------------
       
    70 // CFileManagerBackupSettings::SetContent
       
    71 // ----------------------------------------------------------------------------
       
    72 //
       
    73 EXPORT_C void CFileManagerBackupSettings::SetContent(
       
    74         const TUint32 /*aContent*/ )
       
    75     {
       
    76     }
       
    77 
       
    78 // ----------------------------------------------------------------------------
       
    79 // CFileManagerBackupSettings::SetScheduling
       
    80 // ----------------------------------------------------------------------------
       
    81 //
       
    82 EXPORT_C void CFileManagerBackupSettings::SetScheduling(
       
    83         const TInt /*aScheduling*/ )
       
    84     {
       
    85     }        
       
    86 
       
    87 // ----------------------------------------------------------------------------
       
    88 // CFileManagerBackupSettings::SetDay
       
    89 // ----------------------------------------------------------------------------
       
    90 //
       
    91 EXPORT_C void CFileManagerBackupSettings::SetDay( const TInt /*aDay*/ )
       
    92     {
       
    93     }
       
    94 
       
    95 // ----------------------------------------------------------------------------
       
    96 // CFileManagerBackupSettings::SetTime
       
    97 // ----------------------------------------------------------------------------
       
    98 //
       
    99 EXPORT_C void CFileManagerBackupSettings::SetTime( const TTime& /*aTime*/ )
       
   100     {
       
   101     }
       
   102 
       
   103 // ----------------------------------------------------------------------------
       
   104 // CFileManagerBackupSettings::SetTargetDrive
       
   105 // ----------------------------------------------------------------------------
       
   106 //
       
   107 EXPORT_C void CFileManagerBackupSettings::SetTargetDrive(
       
   108         const TInt /*aDrive*/ )
       
   109     {
       
   110     }
       
   111 
       
   112 // ----------------------------------------------------------------------------
       
   113 // CFileManagerBackupSettings::Content
       
   114 // ----------------------------------------------------------------------------
       
   115 //
       
   116 EXPORT_C TUint32 CFileManagerBackupSettings::Content() const
       
   117     {
       
   118     return iContent;
       
   119     }
       
   120 
       
   121 // ----------------------------------------------------------------------------
       
   122 // CFileManagerBackupSettings::Scheduling
       
   123 // ----------------------------------------------------------------------------
       
   124 //
       
   125 EXPORT_C TInt CFileManagerBackupSettings::Scheduling() const
       
   126     {
       
   127     return 0;
       
   128     }
       
   129 
       
   130 // ----------------------------------------------------------------------------
       
   131 // CFileManagerBackupSettings::Day
       
   132 // ----------------------------------------------------------------------------
       
   133 //
       
   134 EXPORT_C TInt CFileManagerBackupSettings::Day() const
       
   135     {
       
   136     return 0;
       
   137     }
       
   138 
       
   139 // ----------------------------------------------------------------------------
       
   140 // CFileManagerBackupSettings::Time
       
   141 // ----------------------------------------------------------------------------
       
   142 //
       
   143 EXPORT_C const TTime& CFileManagerBackupSettings::Time() const
       
   144     {
       
   145     return iTime;
       
   146     }
       
   147 
       
   148 // ----------------------------------------------------------------------------
       
   149 // CFileManagerBackupSettings::TargetDrive
       
   150 // ----------------------------------------------------------------------------
       
   151 //
       
   152 EXPORT_C TInt CFileManagerBackupSettings::TargetDrive() const
       
   153     {
       
   154     return 0;
       
   155     }
       
   156 
       
   157 // ----------------------------------------------------------------------------
       
   158 // CFileManagerBackupSettings::SaveL
       
   159 // ----------------------------------------------------------------------------
       
   160 //
       
   161 EXPORT_C void CFileManagerBackupSettings::SaveL()
       
   162     {
       
   163     }
       
   164 
       
   165 // ----------------------------------------------------------------------------
       
   166 // CFileManagerBackupSettings::MdcaCount
       
   167 // ----------------------------------------------------------------------------
       
   168 //
       
   169 EXPORT_C TInt CFileManagerBackupSettings::SettingAt( const TInt /*aIndex*/ )
       
   170     {
       
   171     return 0;
       
   172     }
       
   173 
       
   174 // ----------------------------------------------------------------------------
       
   175 // CFileManagerBackupSettings::MdcaCount
       
   176 // ----------------------------------------------------------------------------
       
   177 //
       
   178 TInt CFileManagerBackupSettings::MdcaCount() const
       
   179     {
       
   180     return 0;
       
   181     }
       
   182 
       
   183 // ----------------------------------------------------------------------------
       
   184 // CFileManagerBackupSettings::MdcaPoint
       
   185 // ----------------------------------------------------------------------------
       
   186 //
       
   187 TPtrC CFileManagerBackupSettings::MdcaPoint( TInt /*aIndex*/ ) const
       
   188     {
       
   189     return TPtrC( KNullDesC );
       
   190     }
       
   191 
       
   192 // ----------------------------------------------------------------------------
       
   193 // CFileManagerBackupSettings::CEntry::~CEntry
       
   194 // ----------------------------------------------------------------------------
       
   195 //
       
   196 CFileManagerBackupSettings::CEntry::~CEntry()
       
   197     {
       
   198     }
       
   199 
       
   200 // ----------------------------------------------------------------------------
       
   201 // CFileManagerBackupSettings::RefreshL
       
   202 // ----------------------------------------------------------------------------
       
   203 //
       
   204 EXPORT_C void CFileManagerBackupSettings::RefreshL()
       
   205     {
       
   206     }
       
   207 
       
   208 // ----------------------------------------------------------------------------
       
   209 // CFileManagerBackupSettings::AllowedDriveAttMatchMask
       
   210 // ----------------------------------------------------------------------------
       
   211 // 
       
   212 EXPORT_C TUint32 CFileManagerBackupSettings::AllowedDriveAttMatchMask() const
       
   213     {
       
   214     return KDriveAttRemovable;
       
   215     }
       
   216 
       
   217 // End of File