metadataengine/server/inc/mdsdatabaseupdater.h
changeset 60 79f826a55db2
equal deleted inserted replaced
58:fe894bb075c2 60:79f826a55db2
       
     1 /*
       
     2 * Copyright (c) 2005-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 #include <e32base.h>
       
    18 
       
    19 #ifndef __MDSOBJECTLOCKLIST_H__
       
    20 #define __MDSDATABASEUPDATER_H__
       
    21 
       
    22 class CMdSDatabaseUpdater : public CBase
       
    23     {
       
    24     public: // Constructors and destructor
       
    25 
       
    26         virtual ~CMdSDatabaseUpdater();
       
    27 
       
    28         static CMdSDatabaseUpdater* NewL();
       
    29 
       
    30     private: // Private constructors
       
    31 
       
    32         void ConstructL();
       
    33 
       
    34     public: // Public functions
       
    35 
       
    36         TBool UpdateDatabaseL( TInt64 aMinorVersion );
       
    37 
       
    38     private:
       
    39 
       
    40     };
       
    41 
       
    42 #endif  // __MDSDATABASEUPDATER_H__