mmsharing/mmshavailability/tsrc/ut_availability/Stubs/inc/musavaInviteresponderobserverimp.h
changeset 22 496ad160a278
parent 0 f0cf47e981f9
equal deleted inserted replaced
15:ccd8e69b5392 22:496ad160a278
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  This is implementation class of availability setting class. 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __MUSAVAINVITERESPONDEROBSERVERIMP_H__
       
    20 #define __MUSAVAINVITERESPONDEROBSERVERIMP_H__
       
    21 
       
    22 //  INCLUDES
       
    23 #include "musavainviteresponderobserver.h"
       
    24 #include "musavaobserver.h"
       
    25 
       
    26 #include <e32base.h>
       
    27 #include <e32std.h>
       
    28 
       
    29 //class MMusAvaObserver;
       
    30 
       
    31 /**
       
    32  *  This class Implements mandatory setting baste behavior which is 
       
    33  *  need for availability report.
       
    34  *
       
    35  *  CMusAvaAvailabilityObserverImps is implementation class for madatory 
       
    36  *  setting which are needed for availability report. 
       
    37  *  class represent the interface of application.
       
    38  *
       
    39  *  @lib musavailabilityplugin.lib
       
    40  *  @since S60 v3.2
       
    41  */
       
    42 
       
    43 class CMusAvaInviteResponderObserverImp : public CBase,
       
    44                                           public MMusAvaInviteResponderObserver
       
    45 	{
       
    46 public:
       
    47     
       
    48 	/**
       
    49      * Two-phased constructor
       
    50      *
       
    51      * @since S60 v3.2
       
    52      * @param aDefaultImp Pointer to observer interface 
       
    53      * @return Returns pointer to CMusAvaInviteResponderObserverImp object
       
    54      */
       
    55      
       
    56 	static CMusAvaInviteResponderObserverImp* NewL();
       
    57 	
       
    58 	/**
       
    59      * Destructor
       
    60      *
       
    61      * @since S60 v3.2
       
    62      * @param 
       
    63      * @return 
       
    64      */
       
    65 
       
    66 	~CMusAvaInviteResponderObserverImp();
       
    67 	
       
    68 protected:
       
    69 	/**
       
    70      * Constructor
       
    71      *
       
    72      * @since S60 v3.2
       
    73      * @param aDefaultImp Pointer to observer interface 
       
    74      * @return 
       
    75      */
       
    76 
       
    77 	CMusAvaInviteResponderObserverImp( );
       
    78 	
       
    79     /**
       
    80      * Perform the second phase construction of a
       
    81      *             CMusAvaInviteResponderObserverImp object
       
    82      *
       
    83      * @since S60 v3.2
       
    84      * @param 
       
    85      * @return 
       
    86      */
       
    87 
       
    88 	void ConstructL();
       
    89 	
       
    90                            
       
    91 // from base class MMusAvaInviteResponderObserver
       
    92 
       
    93 public:	
       
    94 
       
    95     MMusAvaSettingsObserver::TApplicationState ApplicationState();
       
    96     
       
    97     void InvitationAnsweredLD();
       
    98     
       
    99 public:
       
   100 
       
   101     MMusAvaSettingsObserver::TApplicationState iApplicationState;
       
   102 	};
       
   103 
       
   104 #endif
       
   105