gsprofilesrv_plat/profiles_engine_api/inc/MProfileExtraSettings.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 settings interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPROFILEEXTRASETTINGS_H
       
    21 #define MPROFILEEXTRASETTINGS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32def.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class MProfilePttSettings;
       
    28 class MProfileFeedbackSettings;
       
    29 class MProfile3DToneSettings;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  Profile extra settings interface.
       
    35 *  @since 3.1
       
    36 */
       
    37 class MProfileExtraSettings
       
    38     {
       
    39     protected:  // Destructor
       
    40 
       
    41         virtual ~MProfileExtraSettings() {};
       
    42 
       
    43     public: // New functions
       
    44 
       
    45         /**
       
    46          * Returns MProfilePttSettings set for this profile.
       
    47          * @return MProfilePttSettings set for this profile.
       
    48          * @since 3.1
       
    49          */
       
    50         virtual const MProfilePttSettings& ProfilePttSettings() const = 0;
       
    51 
       
    52        /**
       
    53          * Returns MProfileFeedbackSettings set for this profile.
       
    54          * @return MProfileFeeedbackSettings set for this profile.
       
    55          * @since 5.0
       
    56          */
       
    57         virtual const MProfileFeedbackSettings& ProfileFeedbackSettings() const = 0;
       
    58 
       
    59        /**
       
    60          * Returns MProfile3DToneSettings set for this profile.
       
    61          * @return MProfile3DToneSettings set for this profile.
       
    62          * @since 3.1
       
    63          */
       
    64         virtual const MProfile3DToneSettings& Profile3DToneSettings() const = 0;
       
    65     };
       
    66 
       
    67 #endif      //  MPROFILEEXTRASETTINGS_H
       
    68 
       
    69 // End of File
       
    70