phoneengine/PhoneCntFinder/inc/Misc/CPhCntRfsHandlerImpl.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Implementation of restore factory settings.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CPHCNTRFSHANDLERIMPL_H
       
    20 #define CPHCNTRFSHANDLERIMPL_H
       
    21 
       
    22 // INCLUDES
       
    23 #include    "CPhCntRfsHandler.h"
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CRfsHandler;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  It is implementation of restore factory settings interface.
       
    32 *
       
    33 *  @lib PhoneCntFinder
       
    34 *  @since 1.0
       
    35 */
       
    36 NONSHARABLE_CLASS( CPhCntRfsHandlerImpl )
       
    37     : public CPhCntRfsHandler
       
    38     {
       
    39     public:  // Constructors and destructor      
       
    40                 
       
    41         /**
       
    42         * Two-phased constructor.
       
    43         * @return New instance
       
    44         */
       
    45         static CPhCntRfsHandlerImpl* NewL();
       
    46         
       
    47         /**
       
    48         * Destructor.
       
    49         */
       
    50         ~CPhCntRfsHandlerImpl();
       
    51 
       
    52     public: // From base classes
       
    53 
       
    54         /**
       
    55         * From CPhCntRfsHandlerImpl
       
    56         */
       
    57         void ProcessCommandL( TRfsCommand aCommand );
       
    58 
       
    59     private:    // Data
       
    60         // Restory factory settings component
       
    61         CRfsHandler* iRfsHandler;
       
    62     };
       
    63 
       
    64 #endif      // CPHCNTRFSHANDLERIMPL_H
       
    65             
       
    66 // End of File