installationservices/switestfw/test/rtautils/rightsDbStep.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2004-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 the License "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 
       
    19 
       
    20 
       
    21 /**
       
    22  @file
       
    23  @internalAll
       
    24  @released
       
    25 */
       
    26 
       
    27 #ifndef __RIGHTSDBSTEP_H__
       
    28 #define __RIGHTSDBSTEP_H__
       
    29 
       
    30 #include "rtautilsstep.h"
       
    31 
       
    32 // Constants used to name test cases 
       
    33 _LIT(KClearRightsDb,"ClearRightsDb");
       
    34 _LIT(KDumpRightsDb,"DumpRightsDb");
       
    35 _LIT(KLoadOldDb,"LoadOldDb");
       
    36 
       
    37 class CRTAUtilsServer;
       
    38 
       
    39 class CClearRightsDb : public CRTAUtilsStep
       
    40 	{
       
    41 public:
       
    42 	CClearRightsDb(CRTAUtilsServer& aParent);
       
    43 	~CClearRightsDb();
       
    44 	virtual TVerdict doTestStepL();
       
    45 	
       
    46 private:
       
    47 	CRTAUtilsServer& iParent;
       
    48 	};
       
    49 
       
    50 
       
    51 #endif