gsprofilesrv_plat/profiles_engine_api/inc/MProfileExtended2.h
changeset 68 13e71d907dc3
parent 40 6465d5bb863a
equal deleted inserted replaced
40:6465d5bb863a 68:13e71d907dc3
     1 /*
       
     2 * Copyright (c) 2009 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:  Extended profile interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MPROFILEEXTENDED2_H__
       
    21 #define __MPROFILEEXTENDED2_H__
       
    22 
       
    23 //  INCLUDES
       
    24 #include <MProfileExtended.h>
       
    25 
       
    26 // DATA TYPES
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 
       
    30 class MProfileExtraTones2;
       
    31 class MProfileSetExtraTones2;
       
    32 class MProfileVibraSettings;
       
    33 class MProfileSetVibraSettings;
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 /**
       
    38 *  Extended profile interface.
       
    39 *  This interface extend MProfile interface.
       
    40 *
       
    41 *  @lib N/A
       
    42 *  @since 10.1
       
    43 */
       
    44 class MProfileExtended2 : public MProfileExtended
       
    45     {
       
    46     protected:  // Destructor
       
    47 
       
    48         virtual ~MProfileExtended2() {};
       
    49 
       
    50     public: // New functions
       
    51 
       
    52         /**
       
    53         * Returns profile extra Tones 2 settings interface.
       
    54         * @since 10.1
       
    55         * @return get rofile Extra Tones 2 settings
       
    56         */
       
    57         virtual const MProfileExtraTones2& ProfileExtraTones2() const = 0;
       
    58         
       
    59         /**
       
    60         * Returns profile set extra tones 2 settings interface.
       
    61         * @since 10.1
       
    62         * @return set profile extra tones 2 settings interface.
       
    63         */
       
    64         virtual MProfileSetExtraTones2& ProfileSetExtraTones2() = 0;
       
    65         
       
    66         /**
       
    67         * Returns profile vibra settings interface.
       
    68         * @since 10.1
       
    69         * @return get profile vibra settings.
       
    70         */
       
    71         virtual const MProfileVibraSettings& ProfileVibraSettings() const = 0;
       
    72         
       
    73         /**
       
    74         * Returns set vibra settings interface.
       
    75         * @since 10.1
       
    76         * @return set profile vibra settings.
       
    77         */
       
    78         virtual MProfileSetVibraSettings& ProfileSetVibraSettings() = 0;
       
    79 
       
    80     };
       
    81 
       
    82 #endif      // __MPROFILEEXTENDED_H__
       
    83 
       
    84 // End of File