phonesrv_plat/phone_settings_api/inc/MPsetCli.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     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: 
       
    15 *    MPsetCli defines interface to get and set CLI settings from the network.
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef     MPSETCLI_H
       
    22 #define     MPSETCLI_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <e32base.h>
       
    26 
       
    27 // CLASS DEFINITIONS 
       
    28 /**
       
    29 *  MPsetCli class is virtual class for CLI.
       
    30 *  @lib phonesettings.lib
       
    31 *  @since 1.0
       
    32 */
       
    33 class   MPsetCli
       
    34     {
       
    35     public:
       
    36 
       
    37         /**
       
    38         * Shows COLP (Connected Line Identification Presentation) mode.
       
    39         */
       
    40         virtual void GetColpModeL() = 0;
       
    41 
       
    42         /**
       
    43         * Shows CLIP (Calling Line Identification Presentation) mode.
       
    44         */
       
    45         virtual void GetClipModeL() = 0;
       
    46         
       
    47         /**
       
    48         * Shows CLIR (Calling Line Identification Restriction) mode.
       
    49         */
       
    50         virtual void GetClirModeL() = 0;
       
    51 
       
    52         /**
       
    53         * Shows COLR (Connected Line Identification Restriction) mode.
       
    54         */
       
    55         virtual void GetColrModeL() = 0;
       
    56 
       
    57         /**
       
    58         * Shows CNAP (Calling Number Presentation) mode.
       
    59         * 
       
    60         */
       
    61         virtual void GetCnapL() = 0;
       
    62 
       
    63         /**
       
    64         * Cancels any (and all) request(s).
       
    65         */
       
    66         virtual void CancelAll() = 0;
       
    67     };
       
    68 #endif // MPSETCLI_H
       
    69 // end of file