metadataengine/server/src/mdsdatabaseupdater.cpp
changeset 60 79f826a55db2
equal deleted inserted replaced
58:fe894bb075c2 60:79f826a55db2
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #include "mdsdatabaseupdater.h"
       
    19 #include "mdssqliteconnection.h"
       
    20 #include "mdssqldbmaintenance.h"
       
    21 #include "mdccommon.h"
       
    22 #include "mdspreferences.h"
       
    23 
       
    24 CMdSDatabaseUpdater* CMdSDatabaseUpdater::NewL()
       
    25     {
       
    26     CMdSDatabaseUpdater* self = new ( ELeave ) CMdSDatabaseUpdater();
       
    27     CleanupStack::PushL( self );
       
    28     self->ConstructL();
       
    29     CleanupStack::Pop( self );
       
    30     return self;  
       
    31     }
       
    32 
       
    33 void CMdSDatabaseUpdater::ConstructL()
       
    34     { 
       
    35     }
       
    36 
       
    37 CMdSDatabaseUpdater::~CMdSDatabaseUpdater()
       
    38     {
       
    39     }
       
    40 
       
    41 TBool CMdSDatabaseUpdater::UpdateDatabaseL( TInt64 /*aMinorVersion*/ )
       
    42     { 
       
    43     return EFalse;
       
    44     }