commsconfig/commsdatabaseshim/ts_commdb/ts_encrpt/TS_EncrptStep.h
changeset 72 ae47d0499bee
parent 68 5da8188e392b
child 77 c9776eadbffd
--- a/commsconfig/commsdatabaseshim/ts_commdb/ts_encrpt/TS_EncrptStep.h	Tue Aug 24 14:43:02 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,79 +0,0 @@
-/**
-* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:
-* This defines the CTS_EncrptStep class which is the base class for all 
-* the EncrptStep test step classes
-* 
-*
-*/
-
-
-
-/**
- @file TS_EncrptStep.cpp.h
-*/
- 
-#if (!defined __TS_ENCRPTSTEP_H__)
-#define __TS_ENCRPTSTEP_H__
-
-#include <e32std.h>
-#include <cdbstore.h>
-
-#include <networking/teststep.h>
-#include "TS_EncrptSuite.h"
-
-// Connection Configuration Lits
-_LIT(KNameDefault, "default");
-
-// Test step names
-_LIT(KCreateEntries,  "CreateEntries"); 
-_LIT(KCheckPasswords ,  "CheckPasswords");
-_LIT(KDeleteEntries  ,  "DeleteEntries");
-
-//Error strings
-_LIT(KEGeneric, "Test left!");
-
-class TGlobalDbIds;			
-class CTS_EncrptSuite;
-
-/* CTS_ConnPrefStep class declaration
- * Provides the base class for all ConnPref test steps
- *
- */
-class CTS_EncrptStep : public CTestStep
-	{
-public:
-	CTS_EncrptStep();
-	virtual ~CTS_EncrptStep();
-	enum TVerdict Test(TInt aResult);
-
-	void ExpLogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
-		TRefByValue<const TDesC> aFmt,...);
-
-	TGlobalDbIds* Get();
-	void Set(TGlobalDbIds * aGlobals);
-	
-	CTS_EncrptSuite* iOwnerSuite;	///< Pointer to suite which owns this test step
-	
-	};
-
-
-class TGlobalDbIds
-{ 
-public:
-	TUint32 id1;
-	TUint32 id2;
-};
-
-#endif /* __TS_ENCRPTSTEP_H__ */