commsconfig/commsdatabaseshim/ts_commdb/ts_encrpt/TS_EncrptSteps.h
changeset 72 ae47d0499bee
parent 68 5da8188e392b
child 77 c9776eadbffd
equal deleted inserted replaced
68:5da8188e392b 72:ae47d0499bee
     1 /**
       
     2 * Copyright (c) 2002-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 * This defines the TS_RConnectionStep class which is the base class for all 
       
    16 * the RConnection multihoming test step classes
       
    17 * 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 /**
       
    24  @file TS_RConnectionStep.h
       
    25 */
       
    26  
       
    27 #if (!defined __TS_ENCRPTSTEPS_H__)
       
    28 #define __TS_ENCRPTSTEPS_H__
       
    29 
       
    30 #include <e32std.h>
       
    31 #include <cdbstore.h>
       
    32 #include <es_sock.h>
       
    33 #include <in_sock.h>
       
    34 #include <es_enum.h>
       
    35 #include <commdbconnpref.h>
       
    36 
       
    37 #include <networking/teststep.h>
       
    38 #include "TS_EncrptSuite.h"
       
    39 #include "TS_EncrptStep.h"
       
    40 
       
    41 
       
    42 class CTS_CreateEntries : public CTS_EncrptStep
       
    43 {
       
    44 public:
       
    45 	CTS_CreateEntries();
       
    46 	virtual ~CTS_CreateEntries();
       
    47 	virtual enum TVerdict doTestStepL();
       
    48 };
       
    49 
       
    50 class CTS_CheckPasswords: public CTS_EncrptStep
       
    51 {
       
    52 public:
       
    53 	CTS_CheckPasswords();
       
    54 	virtual ~CTS_CheckPasswords();
       
    55 	virtual enum TVerdict doTestStepL();
       
    56 };
       
    57 
       
    58 class CTS_DeleteEntries: public CTS_EncrptStep
       
    59 {
       
    60 public:
       
    61 	CTS_DeleteEntries();
       
    62 	virtual ~CTS_DeleteEntries();
       
    63 	virtual enum TVerdict doTestStepL();
       
    64 };
       
    65 
       
    66 
       
    67 
       
    68 #endif /* __TS_ENCRPTSTEPS_H__ */