devencdiskutils/DevEncRfsPlugin/inc/DevEncRfsPlugin.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 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: 
       
    15 *  
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef RFSEXAMPLEPLUGIN_H
       
    22 #define RFSEXAMPLEPLUGIN_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 #include "rfsPlugin.h"
       
    27 #include "DevEncKeyUtils.h"
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 class CDevEncRfsPlugin: public CRFSPlugin
       
    32     {
       
    33 public:
       
    34 
       
    35     /**
       
    36     * Two-phased constructor.
       
    37 	* @param	aInitParams initial parameters
       
    38     */
       
    39     static CDevEncRfsPlugin* NewL(TAny* aInitParams);
       
    40 
       
    41     /**
       
    42     * Destructor.
       
    43     */
       
    44     virtual ~CDevEncRfsPlugin();
       
    45 
       
    46     /**
       
    47     * 
       
    48 	* @param
       
    49     */
       
    50     void RestoreFactorySettingsL( const TRfsReason aType );
       
    51 
       
    52     /**
       
    53     * 
       
    54 	* @param
       
    55     */
       
    56     void GetScriptL( const TRfsReason aType, TDes& aPath );
       
    57 
       
    58     /**
       
    59     * 
       
    60 	* @param
       
    61     */
       
    62     void ExecuteCustomCommandL( const TRfsReason aType, TDesC& aCommand );
       
    63 private:
       
    64 
       
    65     /**
       
    66     * C++ default constructor.
       
    67     */
       
    68     CDevEncRfsPlugin();
       
    69 
       
    70     /**
       
    71     * Constructor.
       
    72     * @param	aInitParams initial parameters
       
    73 	*/
       
    74 	CDevEncRfsPlugin(TAny* aInitParams);
       
    75 
       
    76     /**
       
    77     * Constructor
       
    78     */
       
    79     void ConstructL();
       
    80 
       
    81     CDevEncKeyUtils*    iKeyUtils;
       
    82 
       
    83     };
       
    84 
       
    85 
       
    86 
       
    87 
       
    88 #endif      // RFSEXAMPLEPLUGIN_H
       
    89 
       
    90 // End of File