phoneengine/callhandling/inc/mpecall.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     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:  This file contains the header file of the MPESingleCall class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPECALL_H
       
    21 #define MPECALL_H
       
    22 
       
    23 //INCLUDES
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *  Abstract base class for call.
       
    29 *
       
    30 *  @lib CallHandling.lib
       
    31 */
       
    32 class MPECall
       
    33     {
       
    34     public:
       
    35 
       
    36         /**
       
    37         * Returns call status information
       
    38         * @return the status of the current call
       
    39         */    
       
    40         virtual TPEState GetCallState() const = 0;
       
    41         
       
    42         /**
       
    43         * Returns call id number
       
    44         * @return the call id number
       
    45         */    
       
    46         virtual TInt GetCallId() const = 0;
       
    47         
       
    48     };
       
    49 
       
    50 #endif // MPESINGLECALL_H
       
    51 
       
    52 //End of file