remotemgmt_plat/oma_provisioning_engine_api/inc/MWPPhone.h
changeset 47 dd41e7de3375
equal deleted inserted replaced
46:c15b68295419 47:dd41e7de3375
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Phone interface for handler
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MWPPHONE_H
       
    20 #define MWPPHONE_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 #include <etelmm.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  * MWPPhone is an interface to telephony functionality.
       
    32  *
       
    33  * @since 2.0
       
    34  * @lib ProvisioningEngine
       
    35  */ 
       
    36 class MWPPhone
       
    37     {
       
    38     public:
       
    39 
       
    40         /**
       
    41         * Returns the IMSI.
       
    42         * @return The IMSI
       
    43         */
       
    44         virtual const RMobilePhone::TMobilePhoneSubscriberId& SubscriberId() const = 0;
       
    45 
       
    46         /**
       
    47         * Returns the country code.
       
    48         * @return Country code
       
    49         */
       
    50         virtual const RMobilePhone::TMobilePhoneNetworkCountryCode& Country() const = 0;
       
    51 
       
    52         /**
       
    53         * Returns the network id.
       
    54         * @return Network id
       
    55         */ 
       
    56         virtual const RMobilePhone::TMobilePhoneNetworkIdentity& Network() const = 0;
       
    57 
       
    58         /**
       
    59         * Empty destructor.
       
    60         */
       
    61         virtual ~MWPPhone() {};
       
    62 
       
    63     };
       
    64 
       
    65 #endif  // MWPPHONE_H
       
    66             
       
    67 // End of File