commsconfig/commsdatabaseshim/TE_commdb/te_encrpt/inc/TE_EncrptSteps.h
changeset 72 ae47d0499bee
equal deleted inserted replaced
68:5da8188e392b 72:ae47d0499bee
       
     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 /** 
       
    19  * This defines the TS_RConnectionStep class which is the base class for all 
       
    20  * the RConnection multihoming test step classes
       
    21  *
       
    22  */
       
    23  
       
    24 #if (!defined __TE_ENCRPTSTEPS_H__)
       
    25 #define __TE_ENCRPTSTEPS_H__
       
    26 
       
    27 #include <e32std.h>
       
    28 #include <cdbstore.h>
       
    29 #include "es_sock.h"
       
    30 #include "in_sock.h"
       
    31 #include <es_enum.h>
       
    32 #include <commdbconnpref.h>
       
    33 
       
    34 #include "TE_EncrptStep.h"
       
    35 
       
    36 
       
    37 class CTE_CreateEntries : public CTE_EncrptStep
       
    38 {
       
    39 public:
       
    40 	CTE_CreateEntries();
       
    41 	virtual ~CTE_CreateEntries();
       
    42 	virtual enum TVerdict doTestStepL();
       
    43 };
       
    44 
       
    45 class CTE_CheckPasswords: public CTE_EncrptStep
       
    46 {
       
    47 public:
       
    48 	CTE_CheckPasswords();
       
    49 	virtual ~CTE_CheckPasswords();
       
    50 	virtual enum TVerdict doTestStepL();
       
    51 };
       
    52 
       
    53 class CTE_DeleteEntries: public CTE_EncrptStep
       
    54 {
       
    55 public:
       
    56 	CTE_DeleteEntries();
       
    57 	virtual ~CTE_DeleteEntries();
       
    58 	virtual enum TVerdict doTestStepL();
       
    59 };
       
    60 
       
    61 
       
    62 
       
    63 #endif /* __TE_ENCRPTSTEPS_H__ */