installationservices/switestfw/test/rtautils/archivestep.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 __ARCHIVESTEP_H__
       
    28 #define __ARCHIVESTEP_H__
       
    29 
       
    30 #include "rtautilsstep.h"
       
    31 
       
    32 // Constants used to name test cases 
       
    33 _LIT(KCreateDrmArchive,"CreateDrmArchive");
       
    34 _LIT(KDumpDrmArchive,"DumpDrmArchive");
       
    35 _LIT(KImportDrmArchive,"ImportDrmArchive");
       
    36 _LIT(KMultipartContent, "MultipartContent");
       
    37 
       
    38 class CRTAUtilsServer;
       
    39 
       
    40 class CCreateDrmArchive : public CRTAUtilsStep
       
    41 	{
       
    42 public:
       
    43 	CCreateDrmArchive(CRTAUtilsServer& aParent);
       
    44 	~CCreateDrmArchive();
       
    45 	virtual TVerdict doTestStepL();
       
    46 	
       
    47 private:
       
    48 	CRTAUtilsServer& iParent;
       
    49 	};
       
    50 
       
    51 class CImportDrmArchive : public CRTAUtilsStep
       
    52 	{
       
    53 public:
       
    54 	CImportDrmArchive(CRTAUtilsServer& aParent);
       
    55 	~CImportDrmArchive();
       
    56 	virtual TVerdict doTestStepL();
       
    57 	
       
    58 private:
       
    59 	CRTAUtilsServer& iParent;
       
    60 	};
       
    61 
       
    62 
       
    63 #endif