phone_plat/telephony_device_mode_api/inc/CTelDMHandler.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     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:  Class for creating Telephony Device Mode related classes. 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CTELDMHANDLER_H
       
    21 #define CTELDMHANDLER_H
       
    22 
       
    23 #include    <e32base.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 class MPhoneDeviceModeObserver;
       
    28 class CTelDMGripHandler;
       
    29 
       
    30 // CLASS DECLARATION
       
    31  
       
    32 
       
    33 /**
       
    34 *  Main class for creating Telephony Device Mode classes.
       
    35 *
       
    36 *  @since Series60 3.0
       
    37 */
       
    38 class CTelDMHandler : public CBase
       
    39     { 
       
    40     public: // New functions
       
    41 
       
    42         /**
       
    43         * Set call event observer
       
    44         * @return void
       
    45         */
       
    46         virtual void SetObserverL( MPhoneDeviceModeObserver* aCallHandler ) = 0;
       
    47        
       
    48     };
       
    49 
       
    50 /**
       
    51 * Creates CTelDMFactory. Position 1 in DLL's lookup table.
       
    52 * @return Reference to CTelDMFactory object. Ownership is transferred.
       
    53 */
       
    54 IMPORT_C CTelDMHandler* CTelDMHandlerCreateL();
       
    55  
       
    56  
       
    57 #endif      // CTELDMHANDLER_H  
       
    58 
       
    59 // End of File