uiservicetab/vimpstengine/inc/mvimpstenginesubservice.h
branchRCL_3
changeset 28 3104fc151679
parent 27 2b7283837edb
child 29 9a48e301e94b
equal deleted inserted replaced
27:2b7283837edb 28:3104fc151679
     1 /*
       
     2 * Copyright (c) 2008 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:  M-Class that capsulates sub service API's
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MVIMPSTENGINESUBSERVICE_H
       
    20 #define MVIMPSTENGINESUBSERVICE_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 #include "tvimpstenums.h"
       
    25 
       
    26 
       
    27 //FORWARD DECLARATION
       
    28 
       
    29 //CLASS DECLARATION
       
    30 /**
       
    31  *  
       
    32  *  This class list the M-Class for subservices
       
    33  *
       
    34  *  @lib vimpstengine.lib
       
    35  *  @since S60 5.0
       
    36  */
       
    37 //Class declaration
       
    38 class MVIMPSTEngineSubService
       
    39 	{
       
    40 		
       
    41 	public:		
       
    42 	   
       
    43 	    /**
       
    44 	     * SubServiceState
       
    45 	     * This API is used to get the service state of the SubServices
       
    46 	     * @return TVIMPSTRegistrationState Service State of this service
       
    47 	     */
       
    48 		virtual TVIMPSTEnums::TVIMPSTRegistrationState SubServiceState() const = 0;		
       
    49         
       
    50         
       
    51         /**
       
    52          * Type
       
    53          * This API is used to get the Type of the SubServices
       
    54          * @return the type of subservice - TVIMPSTEnums::SubServiceType
       
    55          */
       
    56         virtual TVIMPSTEnums::SubServiceType Type() const = 0;	
       
    57         
       
    58                 
       
    59 	   /**
       
    60 		* Destructor
       
    61 		*/		
       
    62 		virtual ~MVIMPSTEngineSubService() 
       
    63 		{}
       
    64 		
       
    65 	};
       
    66 
       
    67 #endif //MVIMPSTENGINESUBSERVICE_H
       
    68 
       
    69