gsprofilesrv_plat/profiles_engine_api/inc/MProfilePttSettings.h
changeset 0 8c5d936e5675
equal deleted inserted replaced
-1:000000000000 0:8c5d936e5675
       
     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:  Profile PTT settings interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPROFILEPTTSETTINGS_H
       
    21 #define MPROFILEPTTSETTINGS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32def.h>
       
    25 #include <ProfileInternal.hrh>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  Profile PTT settings interface.
       
    31 *  @since 3.1
       
    32 */
       
    33 class MProfilePttSettings
       
    34     {
       
    35     protected:  // Destructor
       
    36 
       
    37         virtual ~MProfilePttSettings() {};
       
    38 
       
    39     public: // New functions
       
    40 
       
    41         /**
       
    42         * Returns PTT ringing tone file name.
       
    43         * @since 3.1
       
    44         * @return Returns PTT ringing tone file name.
       
    45         */
       
    46         virtual const TDesC& PttRingingTone() const = 0;
       
    47 
       
    48         /**
       
    49          * Returns PTT status of the profile.
       
    50          * @since 3.1
       
    51          * @return Returns PTT status of the profile.
       
    52          */
       
    53         virtual TProfilePttStatus PttStatus() const = 0;
       
    54 
       
    55     };
       
    56 
       
    57 #endif      //  MPROFILEPTTSETTINGS_H
       
    58 
       
    59 // End of File
       
    60