gsprofilesrv_plat/profiles_engine_api/inc/MProfile3DToneSettings.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 3D tone settings interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPROFILE3DTONESETTINGS_H
       
    21 #define MPROFILE3DTONESETTINGS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <ProfileInternal.hrh>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Profile 3D tone settings interface.
       
    30 *  @since 3.1
       
    31 */
       
    32 class MProfile3DToneSettings
       
    33     {
       
    34     protected:  // Destructor
       
    35 
       
    36         virtual ~MProfile3DToneSettings() {};
       
    37 
       
    38     public: // New functions
       
    39 
       
    40         /**
       
    41         * Returns PTT ringing tone file name.
       
    42         * @since 3.1
       
    43         * @return Returns PTT ringing tone file name.
       
    44         */
       
    45         virtual TProfile3DToneEffect Effect() const = 0;
       
    46 
       
    47         /**
       
    48          * Returns PTT status of the profile.
       
    49          * @since 3.1
       
    50          * @return Returns PTT status of the profile.
       
    51          */
       
    52         virtual TProfile3DToneEcho Echo() const = 0;
       
    53 
       
    54     };
       
    55 
       
    56 #endif      //  MPROFILE3DTONESETTINGS_H
       
    57 
       
    58 // End of File
       
    59