multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/MCETestUIEngineDefaultValues.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2005 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:    Static functions to handle default values for 
       
    15 *                MCETestUIEngine objects
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __MCETESTUIENGINEDEFAULTVALUES_H__
       
    24 #define __MCETESTUIENGINEDEFAULTVALUES_H__
       
    25 
       
    26 // INCLUDES
       
    27 #include <e32base.h>
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 * Class MCETestUIEngineDefaultValues is a static class that provides
       
    35 * UI Engine with the default values for different purposes. Values 
       
    36 * are retrieved through functions.
       
    37 */
       
    38 class MCETestUIEngineDefaultValues
       
    39     {
       
    40 
       
    41     public:
       
    42 
       
    43         /**
       
    44         * @return ETrue if default profile is supposed to be taken to use
       
    45         *         automatically at startup        
       
    46         */		
       
    47         static TBool TakeDefaultProfileIntoUse();
       
    48 
       
    49         /**
       
    50         * @return ETrue if used profiles are supposed to be registered
       
    51         *         automatically at startup        
       
    52         */		
       
    53         static TBool RegisterUsedProfiles();
       
    54 
       
    55         /**
       
    56         * @return Address of session's default receiver        
       
    57         */		
       
    58         static const TDesC8& DefaultSessionReceiver();
       
    59 
       
    60 
       
    61     };
       
    62 
       
    63 
       
    64 #endif // __MCETESTUIENGINEDEFAULTVALUES_H__