webservices/wspasswordtransforms/inc/senuppercasetransform.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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: Header declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 #ifndef SEN_UPPERCASE_PASSWORDTRANSFORM_H
       
    26 #define SEN_UPPERCASE_PASSWORDTRANSFORM_H
       
    27 
       
    28 // INCLUDES
       
    29 #include "senpasswordtransform.h"
       
    30 
       
    31 // FORWARD DECLARATIONS
       
    32 class MSenCoreServiceManager;
       
    33 
       
    34 // CLASS DECLARATION
       
    35 class CSenUppercaseTransform : public CSenPasswordTransform
       
    36     {
       
    37     public: // Constructors and destructor
       
    38         
       
    39         static CSenUppercaseTransform* NewL(
       
    40                                     MSenCoreServiceManager& aServiceManager);
       
    41         static CSenUppercaseTransform* NewLC(
       
    42                                     MSenCoreServiceManager& aServiceManager);
       
    43         
       
    44         virtual ~CSenUppercaseTransform();
       
    45 
       
    46         // Functions from base classes
       
    47     
       
    48         // From CSenPasswordTransform
       
    49         
       
    50         /**
       
    51         * method does nothing
       
    52         */
       
    53         virtual TInt SetParameterL(TPtrC8 aName, TPtrC8 aValue);
       
    54         virtual HBufC8* TransformL(TPtrC8 aPassphrase) const;
       
    55 
       
    56     protected:
       
    57     
       
    58         /**
       
    59         * C++ default constructor.
       
    60         */
       
    61         CSenUppercaseTransform(MSenCoreServiceManager& aServiceManager);
       
    62     };
       
    63 
       
    64 #endif // SEN_UPPERCASE_PASSWORDTRANSFORM_H
       
    65 
       
    66 // End of File