commsconfig/cscsipvoipcleanupplugin/inc/cscsvcplugin.h
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
equal deleted inserted replaced
21:f742655b05bf 22:d38647835c2e
       
     1 /*
       
     2 * Copyright (c) 2007-2007 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 #ifndef C_CSCSVCPLUGIN_H
       
    20 #define C_CSCSVCPLUGIN_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 #include "cscengsettingscleanupplugininterface.h"
       
    25 
       
    26 class CCSCSvcPluginHandler;
       
    27 
       
    28 /**
       
    29  *  An instance of class CCSCSvcPlugin.
       
    30  *
       
    31  *  @lib
       
    32  *  @since S60 v3.2
       
    33  */
       
    34 class CCSCSvcPlugin : public CCSCEngSettingsCleanupPluginInterface
       
    35     {
       
    36     public:
       
    37 
       
    38         static CCSCSvcPlugin* NewL();
       
    39 
       
    40 				/**
       
    41          * Destructor.
       
    42          */
       
    43         ~CCSCSvcPlugin();
       
    44         
       
    45         
       
    46         // From base class CCSCEngSettingsCleanupPluginInterface
       
    47         
       
    48         /**
       
    49          * From CCSCEngSettingsCleanupPluginInterface
       
    50          * Get plugin type.
       
    51          *
       
    52          * @since S60 v3.2
       
    53          */
       
    54         TCSCPluginType PluginType() const;
       
    55 
       
    56         /**
       
    57          * From CCSCEngSettingsCleanupPluginInterface
       
    58          * Remove settings based on service id.
       
    59          *
       
    60          * @since S60 v3.2
       
    61          */
       
    62         void RemoveSettingsL( TUint32 aServiceId );
       
    63 
       
    64 
       
    65     private:
       
    66               
       
    67         CCSCSvcPlugin();
       
    68 
       
    69         void ConstructL();
       
    70 
       
    71     
       
    72     private:  // data
       
    73     
       
    74     	/*
       
    75          * Handle to CCSCSvcPluginHandler.
       
    76          * Own.
       
    77          */
       
    78         CCSCSvcPluginHandler* iSvcPluginHandler;
       
    79     };
       
    80 
       
    81 #endif  // C_CSCSVCPLUGIN_H
       
    82 
       
    83