profilesservices/ProfileEngine/EngInc/MProfileSetFeedbackSettings.h
branchRCL_3
changeset 8 f62c3a3d66b8
parent 4 3f8368f032cf
child 10 c8b9b0986973
equal deleted inserted replaced
4:3f8368f032cf 8:f62c3a3d66b8
     1 /*
       
     2 * Copyright (c) 2007 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 set feedback settings interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPROFILESETFEEDBACKSETTINGS_H
       
    21 #define MPROFILESETFEEDBACKSETTINGS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32def.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Profile set feedback settings interface.
       
    32 *  @since 5.0
       
    33 */
       
    34 class MProfileSetFeedbackSettings
       
    35     {
       
    36     protected:  // Destructor
       
    37 
       
    38         virtual ~MProfileSetFeedbackSettings() {};
       
    39 
       
    40     public: // New functions
       
    41 
       
    42         /**
       
    43         * Set tactile feedback of the profile.
       
    44         * @since 5.0
       
    45         */
       
    46         virtual void SetTactileFeedback( TProfileTactileFeedback aTactileFeedback ) = 0;
       
    47 
       
    48         /**
       
    49          * Set audio feedback of the profile.
       
    50          * @since 5.0
       
    51          */
       
    52         virtual void SetAudioFeedback( TProfileAudioFeedback aAudioFeedback ) = 0;
       
    53 
       
    54     };
       
    55 
       
    56 #endif      //  MPROFILESETFEEDBACKSETTINGS_H
       
    57 
       
    58 // End of File
       
    59 
       
    60 
       
    61